Changeset 6489


Ignore:
Timestamp:
30 Jun 2011, 13:33:08 (13 years ago)
Author:
Henrik Bettermann
Message:

Meanwhile we build on Python2.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/docs/source/developerdocs/developernotes.rst

    r5770 r6489  
    2121What you need (Debian/Ubuntu package names in brackets):
    2222
    23 * Python 2.5 (python2.5)
    24 
    25   Currently, also Python2.4 is supported but we want to make use of
    26   some of the 2.5 goodies in the future.
    27 
    28 
    29 * Python 2.5 development files (python2.5-dev)
     23* Python 2.6 (python2.6)
     24
     25  Currently, also Python2.5 is supported but we want to make use of
     26  some of the 2.6 goodies in the future.
     27
     28
     29* Python 2.6 development files (python2.6-dev)
    3030
    3131* A C-Compiler (gcc)
     
    4141All these packages can be installed on Debian systems like this::
    4242
    43   # apt-get install python2.5 python2.5-dev python2.5-dbg \
     43  # apt-get install python2.6 python2.6-dev python2.6-dbg \
    4444                    gcc libc6-dev svn enscript
    4545
    4646Afterwards you should be able to enter::
    4747
    48   $ python2.5
     48  $ python2.6
    4949
    5050at the commandline and get a Python prompt. Quit the interpreter
     
    6565install ``easy_install`` into your system Python::
    6666
    67   $ sudo python2.5 ez_setup.py
     67  $ sudo python2.6 ez_setup.py
    6868
    6969.. _`ez_setup.py`: http://peak.telecommunity.com/dist/ez_setup.py
     
    7979Now you can install `virtualenv` by doing (as root)::
    8080
    81   # easy_install-2.5 virtualenv
     81  # easy_install-2.6 virtualenv
    8282
    8383This step will fetch all needed sources from the internet and install
    84 `virtualenv` locally in your Python2.5 installation.
     84`virtualenv` locally in your Python2.6 installation.
    8585
    8686
     
    150150etc. This steip will not touch any external projects::
    151151
    152   $ python2.5 bootstrap.py
     152  $ python2.6 bootstrap.py
    153153
    154154This will generate some directories and the ``buildout`` script in
Note: See TracChangeset for help on using the changeset viewer.