I have two different versions of python running on the server, 2.4 (default) and 2.5. Python-matplotlib is install via apt-get for 2.4. I want to install it also for 2.5, but apt-get install says that it is already installed. How do I specify that the install target should be the non-default python version.
feedback
|
|
I would recommend EasyInstall, to install packages native to each Python installation. | |||
|
feedback
|
|
This worked for me: Link python command so that "python --version" shows the version you want matplotlib to be installed for. Manually compile and install matplotlib. Relink python command back to previous version. | |||
|
feedback
|
|
Python modules need to be installed for each python version separately. Debian has support for multiple-python modules in one package (via | |||
|
feedback
|