andre228
andre228

Reputation: 3

ModuleNotFoundError: No module named 'numpy' in Python 3.7 on Mac

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

Answers (1)

Hamish Smith
Hamish Smith

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

Related Questions