I have several python installations on my system, in /usr/lib/ I have python2.7, python 3, python3.2. I am trying to upgrade my version of scipy from .9. When I do a
sudo pip install --upgrade scipy
It doesn't work saying that it's already done in /usr/local/lib/python3.2/dist-packages
When I import it in ipython, however, it finds the old version of Scipy:
/usr/lib/python2.7/dist-packages/scipy/__init__.pyc
How do I tell python to load the 3.2 version of scipy and not the 2.7? I believe this has something to do with the PYTHONPATH variable, but I'm not sure which one to change.
James