I am new to python/numpy/programming in general. I pip installed numpy. Here's its path:
/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python
Then, when I enter the python shell, I type in import numpy and get:
ImportError: No module named numpy
This is what it looks like overall:
MacBook-Air:desktop tvska$ pip install numpy
Requirement already satisfied (use --upgrade to upgrade): numpy in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python
Cleaning up...
MacBook-Air:desktop tvska$ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named numpy
Any advice would really be appreciated!