Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

readme.md

ModuleNotFoundError: No module named 'numpy'

Occurs when trying to import a module that is not installed.

Reproduce

import numpy as np

print(np.array([1, 2, 3]))

Error Message

ModuleNotFoundError: No module named 'numpy'

Fix

pip install numpy

Reflection

Tried to use a module before installing it.