Is it possible to install Python 2.5 on bubba TWO ?
If so, which repository do I have to set for apt-get ?
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Python 2.5
-
- Posts: 9
- Joined: 01 Dec 2008, 14:12
Django and Python2.5
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
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
Have you noticed any negative side effects from updating to 2.5?