I am using Linux Mint Nadia and have both Python 3.2.3 and Python 2.7.3 installed. I access each using IDLE and have some modules that only work on 1 version. I think the default version is 2.7.3 because this is what appears when I type "python" in the terminal.
I am trying to install scipy for python3. Despite following all the instructions on the scipy webpage, including downloading and unpacking it, making sure I have dependencies, and finally using
python setup.py install
I received an error regarding BLAS, which another person experienced: Does Python SciPy need BLAS?
I installed setuptools and tried to use easy_install as well as followed the 34 positive vote answer on the above link, which did not work either, and finally used the 21 vote instruction
apt-get install python-scipy
which finally worked, but installed it for python 2.7.3. I need to use scipy on python3 and believe that the easiest way for me to do this would be to change the default python on my linux and then re-run apt-get install python-scipy. I also think that this will make installing future modules on python 3 easier, as I mainly use python 3.
What is the right way to change the default installation or should I do something differently in order to be able to use scipy on python3 and make it easier to install future modules? I have also noticed that other modules install by default on python 2.7.3.