diff options
author | gbrandl <devnull@localhost> | 2007-01-10 21:02:06 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-01-10 21:02:06 +0100 |
commit | 371b7fc533b77e67cc63fb061a44a1dd20d2ab6f (patch) | |
tree | a4be44f2925a59110c249bbce90a3ddeba9ca732 /docs/src | |
parent | e34e4f3f93d44dd289c74ef467f8e673d635ad6f (diff) | |
download | pygments-371b7fc533b77e67cc63fb061a44a1dd20d2ab6f.tar.gz |
[svn] Add setup.py develop hint.
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/installation.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/src/installation.txt b/docs/src/installation.txt index 3c2f74bf..4bf80f0f 100644 --- a/docs/src/installation.txt +++ b/docs/src/installation.txt @@ -38,9 +38,12 @@ Installing the development version 1. Install `Subversion`_ 2. ``svn co http://trac.pocoo.org/repos/pygments/trunk pygments`` -3. ``ln -s `pwd`/pygments/pygments /usr/lib/python2.X/site-packages`` -4. ``ln -s `pwd`/pygments/pygmentize /usr/local/bin`` +3. ``cd pygments`` +4. ``ln -s pygments /usr/lib/python2.X/site-packages`` +5. ``ln -s pygmentize /usr/local/bin`` +As an alternative to steps 4 and 5 you can also do ``python setup.py develop`` +which will install the package via setuptools in development mode. .. _download page: http://pygments.pocoo.org/download/ .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools |