I try importing numpy from windows command prompt but got 'module not found' error
>>> import numpy as np
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'numpy
However, I am able to import numpy successfully on jupiter notebook. How do I fix this problem?