There is a case when even you have installed NumPy in your system you get the message No Module Named Numpy Import Error. Many coders are unable to solve these issues quickly and become headache. In this entire tutorial, I will show you how to remove the No Module Named Numpy error. Just follow the steps defined below.
No Module Named Numpy Import Error on Windows
If you are getting no module named numpy error in windows then follow the following steps.
Step 1: Uninstall the previous NumPy library.
Open the command prompt and type the below command to uninstall numpy from your system.
For python 2.xx version
pip uninstall numpy
For python 3.xx version
pip3 uninstall numpy
Step 2: Install the Numpy Library
After step 1 the next step is to install the NumPy library again. In you command prompt type the following command.
For python 2.xx version
pip install numpy
For python 3.xx version
pip3 install numpy
It will successfully install the library and remove this numpy Import Error. You can check it by checking the version of the installed numpy by running the command below.
No Module Named Numpy Import Error on Linux
If you are getting this Import Error on Linux then you have to first check the system path of the installed python. It is only to check the version of the python so that you can install NumPy for the specific python version. Run the below command to remove the error.
Step: 1 Uninstall the NumPy
Before installing remove the previously installed NumPy version using the below command.
For python 2.xx version
sudo pip uninstall numpy
For python 3.xx version
sudo pip3 uninstall numpy
Step 2: Install the NumPy module.
Now the last step is to install the NumPy module. Run the below command.
For python 2.xx version
sudo pip install numpy
For python 3.xx version
sudo pip3 install numpy
Sometime pip is not installed on your Linux system then this case you have to install it before running the above command. To install the pip module run the below code.
For python 2.xx version
sudo apt install python-pip
For python 3.xx version
sudo apt install python3-pip
Then try the commands given in step 2.
No Module Named Numpy Import Error on MacOs
To remove this error in your MacOs then the process is the same described in the Linux system. Follow the same steps in the above section. You will easily remove this error.
Conclusion
Hope this article has helped you to remove the No Module Named Numpy Import Error on your system. Read how to install NumPy if you want to install it in pycharm. Still, the problem has not solved then you can contact us. We are always ready to help you.
Join our list
Subscribe to our mailing list and get interesting stuff and updates to your email inbox.