Installing Modules For Multiple Python Versions
I have installed python 2.6.6 and python 2.5.5 on the same machines (Ubuntu 10.0.4), since 2.6 is my default version and 2.5 I need for maintaining old stuff. But I have a problem
Solution 1:
You can use easy_install
. To use it for particular version, you just execute it like for example sudo python2.5 easy_install package_name
.
Post a Comment for "Installing Modules For Multiple Python Versions"