Epydoc can be downloaded from the SourceForge download page. Epydoc is available in five formats:
.noarch.rpm
) .win32.exe
) .tar.gz
) .zip
) .src.rpm
) If you are installing on RedHat, I recommend that you use the RPM file. If you are installing on Windows, I recommended that you use the windows installer. Otherwise, you should use one of the source install files.
If you wish to keep up on the latest developments, you can get the latest version of epydoc from the subversion repository:
[/home/edloper]$
svn co https://epydoc.svn.sourceforge.net/svnroot/epydoc/trunk/epydoc epydoc
[/home/edloper]$
ls epydoc
Makefile doc man sandbox src
This will create a directory named epydoc
containing
the latest version of epydoc. The epydoc package itself is in
epydoc/src/epydoc
(so adding epydoc/src
to
your PYTHONPATH will let you use it). You should periodically update
your copy of the subversion repository, to make sure you have all the
latest changes:
[/home/edloper/epydoc]$
svn up
You can browse the subversion repository here.
rpm
to install the new package.
[/tmp]$
su
Password:[/tmp]#
rpm -i epydoc-3.0.1.noarch.rpm
[/tmp]#
rm epydoc-3.0.1.rpm
epydoc-3.0.1.win32.exe
. epydoc
subdirectory of your Python installation
directory (typically C:\Python23\
). Scripts
subdirectory of your Python installation
directory: epydoc.pyw
opens the graphical user
interface, and epydoc.py
calls the command line
interface. If you'd like, you can create shortcuts from these
scripts to more convenient locations (such as your desktop or start
menu). epydoc-3.0.1.win32.exe
. [/tmp]$
wget -q http://prdownloads.sourceforge.net/epydoc/epydoc-3.0.1.tar.gz
[/tmp]$
gunzip epydoc-3.0.1.tar.gz
[/tmp]$
tar -xvf epydoc-3.0.1.tar
make install
" in the eydoc-3.0.1/
directory to install epydoc.
[/tmp]$
cd epydoc-3.0.1/
[/tmp/epydoc-3.0.1]$
su
Password:[/tmp/epydoc-3.0.1]#
make install
running install running build [...] copying build/scripts/epydoc -> /usr/bin changing mode of /usr/bin/epydoc to 100775
make installdocs
". By default, this will install the
documentation to /usr/share/doc/
and the man pages to
/usr/share/man/
. If you would prefer to install
documentation to different directories (such as
/usr/lib/doc
), then edit the MAN
and
DOC
variables at the top of Makefile
before
running "make installdocs
".
[/tmp/epydoc-3.0.1]#
make installdocs
[/tmp/epydoc-3.0.1]#
cd ..
[/tmp]#
rm -r epydoc-3.0.1
[/tmp]#
rm epydoc-3.0.1.tar
[/tmp]$
wget -q http://prdownloads.sourceforge.net/epydoc/epydoc-3.0.1.tar.gz
[/tmp]$
gunzip epydoc-3.0.1.tar.gz
[/tmp]$
tar -xvf epydoc-3.0.1.tar
setup.py
script in the
eydoc-3.0.1/
directory to install epydoc.
[/tmp]$
cd epydoc-3.0.1/
[/tmp/epydoc-3.0.1]$
su
Password:[/tmp/epydoc-3.0.1]#
python setup.py install
running install running build [...] copying build/scripts/epydoc -> /usr/bin changing mode of /usr/bin/epydoc to 100775[/tmp/epydoc-3.0.1]#
cd ..
[/tmp]#
/usr/share/doc/
.
You may also want to copy the man pages to a permanant location, such
as /usr/share/man/
.
[/tmp]#
cp -r epydoc-3.0.1/doc/ /usr/share/doc/epydoc/
[/tmp]#
cp epydoc-3.0.1/man/* /usr/share/man/
[/tmp]#
rm -r epydoc-3.0.1
[/tmp]#
rm epydoc-3.0.1.tar
Epydoc 2.1 is available as a testing debian package
(python-epydoc
). The epydoc documentation is also
available as a package (epydoc-doc
).
Home | Installing Epydoc | Using Epydoc | Epytext |