modulenotfounderror no module named 'numpy' windows 10 code example

Example 1: no module named 'numpy'

pip install numpy

Example 2: install pandas in pycharm

> View > Tool windows > Terminal
	pip3 install pandas

File > Settings > Your project > Python Interpreter 
	if pandas is missing:
    > '+' (Install) > Search pandas, Install Package

Example 3: No module named 'numpy'

#if you install numpy with pip, run the python file in the command line like this
python myFile.py

#if you install numpy with pip3, run the python file in the command line like this
python3 myFile.py