diff options
author | gbr <gbr@Georglap> | 2007-09-08 19:20:28 +0200 |
---|---|---|
committer | gbr <gbr@Georglap> | 2007-09-08 19:20:28 +0200 |
commit | 91cde23efb12d9aaab9a1a1bc065362fd987ac23 (patch) | |
tree | 793e15067a7050643ce183175e75551cf7ae3be7 | |
parent | 503ce45d723f4e9f5a365d9e5298148e5f159922 (diff) | |
download | pygments-91cde23efb12d9aaab9a1a1bc065362fd987ac23.tar.gz |
update installation docs.
-rw-r--r-- | docs/src/installation.txt | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/docs/src/installation.txt b/docs/src/installation.txt index a7e408fb..c611fc55 100644 --- a/docs/src/installation.txt +++ b/docs/src/installation.txt @@ -43,8 +43,8 @@ Installing the development version If you want to play around with the code ---------------------------------------- -1. Install `Subversion`_ -2. ``svn co http://trac.pocoo.org/repos/pygments/trunk pygments`` +1. Install `Mercurial`_ +2. ``hg clone http://dev.pocoo.org/hg/pygments-main pygments`` 3. ``cd pygments`` 4. ``ln -s pygments /usr/lib/python2.X/site-packages`` 5. ``ln -s pygmentize /usr/local/bin`` @@ -52,19 +52,20 @@ If you want to play around with the code 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. -If you just want the latest features and use them -------------------------------------------------- - -:: +.. + If you just want the latest features and use them + ------------------------------------------------- + + :: sudo easy_install Pygments==dev -This will install a Pygments egg containing the latest Subversion trunk code -in your Python installation's site-packages directory. Every time the command -is run, the sources are updated from Subversion. + This will install a Pygments egg containing the latest Subversion trunk code + in your Python installation's site-packages directory. Every time the command + is run, the sources are updated from Subversion. .. _download page: http://pygments.org/download/ .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools .. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall -.. _Subversion: http://subversion.tigris.org/ +.. _Mercurial: http://selenic.com/mercurial/ |