Reputation: 3
I have python 3.7.2. I am trying to import numpy and keep getting this error. I use the terminal on Mac OS Mojave V 10.14.2
import numpy
Traceback (most recent call last):
File "< stdin >", line 1, in < module >
ModuleNotFoundError: No module named 'numpy'
Upvotes: 0
Views: 14588
Reputation: 8181
I think this could be a duplicate of this question.
numpy is not part of the python standard library and needs to be installed separately.
There are instructions for mac install in the question I linked for you.
Upvotes: 2