I just got a new machine (osx-lion), and I'm in the process of trying to reinstall all of my tools. I'm trying to install NumPy and SciPy. I know that the version Apple ships isn't exactly what makes NumPy and SciPy happy, so I went to Python.org and installed the recommended version (2.7.3), which went smoothly. Now when I which python, it points to the new 2.7 version which was different than the one the machine came with. My PATH variable also contains the path to the 2.7 (python.org) version.
Then I downloaded NumPy and got the message:
numpy 1.6.1 cannot be installed on this disk. numpy requires python.org Python 2.6 to install.
So then I tried SciPy, and got the same message:
scipy 0.10.1 can't be installed on this disk. scipy requires python.org Python 2.6 to install.
After some googling, I see that the 2.6 required is just 2.6 or or greater, and I did install the Python.org version (2.7), but I must be missing something.
Edit - Just tried rebooting the machine in case there were some changes that needed a restart to take effect, but that didn't help.
Any help would be greatly appreciated. Thanks all.
Then I downloaded NumPy- Do you mean a pre-built binary installer? If so, which one? From where? (There are a lot of different binary installers, especially for OSX.) Generally speaking, somewhere on the page you downloaded the installer from, it will specify which version of python is was built to run under. – Joe Kington May 12 '12 at 20:57PATHyou may accidentally be using the default Python that comes with OS X. I'm not sure, but I think the version varies according to the version of OS X you are using. – dtlussier May 15 '12 at 19:17