From: Scott C. L. <sli...@ca...> - 2012-04-03 15:07:39
|
On 3 Apr 2012, at 07:32, Richard Murray wrote: >> src does not exist ? Perhaps from a different Python installation >> package. >> >> I am using Python2.7 on a Mac. >> I installed Pythons using fonnesbeck-ScipySuperpack-fb2fc07 . >> >> I believe that I have installed scipy, numpy and matplotlib, and other >> items in the package. >> >> Perhaps more detailed instruction for control-Python might assist me. In your debugging effort, first make sure that you are invoking the correct Python binary by looking at $ which -a python To see the details of the installation process, call Python with the "-v" flag (for "verbose"). I suggest redirecting to a plain text file so that you can grep for keywords. E.g., $ sudo python -v setup.py install > foo.txt 2>&1 $ grep -i numpy foo.txt ~Scott |