0

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'
Sangam Belose
  • 4,262
  • 8
  • 26
  • 48
andre228
  • 3
  • 1
  • 1
  • 3

1 Answers1

2

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.

Hamish Smith
  • 8,153
  • 1
  • 34
  • 48