Page 1 of 1

Python 2.5

Posted: 14 Jan 2009, 05:18
by microspino
Is it possible to install Python 2.5 on bubba TWO ?
If so, which repository do I have to set for apt-get ?

Django and Python2.5

Posted: 21 Jan 2009, 07:24
by microspino
I answered myself yesterday:

apt-get install python2.5 python2.5-dev

then I removed the symlink in /usr/bin that point to python2.4
creating a new one targeted at python2.5:

as root
cd /usr/bin
rm python
ln python2.5 python

This way when I issue python.. at the command line I got Python2.5 instead of pytho2.4.

I've also tried Django:
wget http://www.djangoproject.com/download/1.0.2/tarball/

tar xzvf Django-1.0.2-final.tar.gz
cd Django-1.0.2-final
sudo python setup.py install

Need this for calendarserver

Posted: 04 Apr 2009, 11:59
by XMLove
Have you noticed any negative side effects from updating to 2.5?