Import Error: No module named numpy | modulenotfounderror: no module named 'numpy' 






You can simply use


pip install numpy

Or for python3, use


pip3 install numpy



Support for Python 3 was added in NumPy version 1.5.0, so to begin with, you must download/install a newer version of NumPy.

Or simply using pip:


python3 -m pip install numpy




Previous Post Next Post