first of all - I know there are other people who asked similar questions, but none of the solutions in those posts worked for me.
My problem is that I installed numpy, but for some reason I cannot use it.
I tried several things listed in this post: How to install NumPy for python 3.3.5 on Mac OSX 10.9
In particular I tried
- -pip install numpy
- brew install numpy --with-python3
- downloading numpy on the website and executing the install file in the command line
- installing anaconda which supposedly comes with numpy
none of this works.. if i open IDLE and type in "import numpy as np" I always get the error message
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import numpy as np
ImportError: No module named 'numpy'
I am thinking maybe the problem is that I seem to have 2 python versions installed? In my applications folder, I see that Python 3.5 including IDLE is installed. However, if I type in python --version in the terminal I see that Python 2.7.10 is installed..
can anyone help me to get numpy to work?