Changeset 6489 for main/waeup.sirp/trunk/docs/source/developerdocs
- Timestamp:
- 30 Jun 2011, 13:33:08 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/docs/source/developerdocs/developernotes.rst
r5770 r6489 21 21 What you need (Debian/Ubuntu package names in brackets): 22 22 23 * Python 2. 5 (python2.5)24 25 Currently, also Python2. 4is supported but we want to make use of26 some of the 2. 5goodies 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) 30 30 31 31 * A C-Compiler (gcc) … … 41 41 All these packages can be installed on Debian systems like this:: 42 42 43 # apt-get install python2. 5 python2.5-dev python2.5-dbg \43 # apt-get install python2.6 python2.6-dev python2.6-dbg \ 44 44 gcc libc6-dev svn enscript 45 45 46 46 Afterwards you should be able to enter:: 47 47 48 $ python2. 548 $ python2.6 49 49 50 50 at the commandline and get a Python prompt. Quit the interpreter … … 65 65 install ``easy_install`` into your system Python:: 66 66 67 $ sudo python2. 5ez_setup.py67 $ sudo python2.6 ez_setup.py 68 68 69 69 .. _`ez_setup.py`: http://peak.telecommunity.com/dist/ez_setup.py … … 79 79 Now you can install `virtualenv` by doing (as root):: 80 80 81 # easy_install-2. 5virtualenv81 # easy_install-2.6 virtualenv 82 82 83 83 This step will fetch all needed sources from the internet and install 84 `virtualenv` locally in your Python2. 5installation.84 `virtualenv` locally in your Python2.6 installation. 85 85 86 86 … … 150 150 etc. This steip will not touch any external projects:: 151 151 152 $ python2. 5bootstrap.py152 $ python2.6 bootstrap.py 153 153 154 154 This will generate some directories and the ``buildout`` script in
Note: See TracChangeset for help on using the changeset viewer.