diff options
-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/ |