Version 8 (modified by maxb, 12 years ago) (diff) |
---|
Installation on Specific Systems
Pages dedicated to specific Operating Systems:
Below is material which needs to be migrated to the pages listed above.
Debian Packaging
Ian Bicking noted that there is a python tool for creating Debian packages: http://easy-deb.sourceforge.net/
Debian and Ubuntu
They are *not* binary compatible. Mark Shuttleworth clarified this in something which was posted to Slashdot sometime in the last couple of weeks. Ubuntu is built fresh from Debian Unstable *source* every 6 months by picking a snapshot, fixing bugs and running q/a on the CD images. Bugs fixed are pushed back upstream.
The stuff below should work for Ubuntu ... but they may already be on python2.4 ...
Debian Sarge and Sid (unstable): Non-root installs
Here $ is your prompt.
- Make sure you are a member of the 'staff' group. This group
has permission to write in the '/usr/local' tree. Debian packages set up some empty directories in this tree with the correct permissions so that non-root installs of supplementary modules etc can be done.
The 'id' program will show you what groups you are already a member of. If your username is 'me' and your uid is 1001 then the output of 'id' will appear as shown and you need to list all the present additional groups as well as 'staff' when running 'usermod'. If 'staff' is already listed then you can skip this step.
$ id uid=1001(me) gid=1001(mygroup) groups=24(cdrom),29(audio),1001(mygroup) $ sudo usermod -G 24,29,staff me
You need to log out and in again for this to take effect.
- Install python2.4-dev. [example: Debian provides methods other than sudo ...]
sudo apt-get install python2.4-dev
- Create a pydistutils.cfg file in your home directory. [or use vi/emacs/...]
$ cat > ~/.pydistutils.cfg << EOF [install] install_lib = /usr/local/lib/python2.4/site-packages [easy_install] site_dirs=/usr/local/lib/python2.4/site-packages EOF
Please notice that the easy_install section does not support the $ variables. Just write the complete path.
- Run ez_setup.py from the Turbogears download page.
$ python2.4 ez_setup.py -f http://www.turbogears.org/download/index.html --script-dir /usr/local/bin TurboGears