I\'m learning python using Visual Studio 2017 on Windows 10. When I\'m trying to import NumPy library into my code, this error appears. I have tried uninstalling and reinsta
I encountered the same problem with VSCode, and I resolved it by adding the following path to the system environment. After that restart VSCode and everything is OK.
C:\Users\<Your user name>\Anaconda3\Library\bin
If the anaconda was not installed in the default directory, please find your own Anaconda3\Library\bin
.
Refer to my answer here
You need to update your environment variable "PATH" adding \Library\bin
Note: Follow this step only if you have already installed numpy and still facing issue.
C:\Users\<username>\AppData\Roaming\Python\Python<version>\Library\bin
C:\Users\<username>\AppData\Local\Continuum\Anaconda<version>\Library\bin\
I've tried the following solution when I got the same issue for latest numpy
version
1) Uninstall the numpy
using pip
as mentioned below:
pip uninstall numpy
Note: I've only Anaconda python v3.x installed in my system, so I'm using pip
. If you've both 2.x
and 3.x
the use pip3
to for this purpose.
2) Install numpy 1.14.6
package using the below command
pip install numpy==1.14.6
This issue in the question is mentioned in the Github in the below link: https://github.com/ContinuumIO/anaconda-issues/issues/1508
The newest version (in python 3) seems to be broken. Install an old version:
pip3 uninstall numpy
pip3 install 'numpy<1.13'
Keep in mind that was written in 2017. There might be a newer version that is not broken now.
First step make sure VS code is able to find python and you are able to run simple
print("hello World!") # without any imports, makes sure vscode is able to find python
refer to How to setup VS code to find python3 on windows 10
Second step
Review error message properly and note the path pointing to numpy location. in my case it is C:\ProgramData\Anaconda3\lib\site-packages\numpy\core This is conda base environment and you have to upgrade numpy here. If your location is different , then you need to remove/update numpy in corresponding environment path.
File "C:\ProgramData\Anaconda3\lib\site-packages\numpy\core\__init__.py", line 16, in <module>
from . import multiarray
ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File ".\pie_chart.py", line 1, in <module>
import numpy as np
File "C:\ProgramData\Anaconda3\lib\site-packages\numpy\__init__.py", line 142, in <module>
from . import add_newdocs
File "C:\ProgramData\Anaconda3\lib\site-packages\numpy\add_newdocs.py", line 13, in <module>
from numpy.lib import add_newdoc
File "C:\ProgramData\Anaconda3\lib\site-packages\numpy\lib\__init__.py", line 8, in <module>
Refer to image above , in my case error message in vscode pointed to following path C:\ProgramData\Anaconda3\lib\site-packages\numpy\core. This path corresponds to conda Base environment. To verify just do a pip install numpy and it will tell you the path, make sure you launch Anaconda prompt in administrator mode and do a pip install in conda prompt. Once I made sure the path ( i.e. environment) where I am installing packages is same as in the error message.I ran below commands( add packages as per your error messages)
`
#Run below commands in conda command prompt using administrator mode
pip uninstall numpy
pip uninstall scipy
pip install numpy --upgrade
pip install scipy --upgrade
Following this procedure resolved my error.
I'm relatively new here, but would like to share my experience: I had the exact same Error, trying to run a script from the console. I am using anaconda. I did
conda update --all
I can execute the script from the conda console (base(root)) now, but still not from the windows command line. There I am still getting an error:
Traceback (most recent call last):
File "C:\Users\Georg\OneDrive\Desktop\scraping.py", line 7, in import numpy as np File "C:\Users\Georg\Anaconda3\lib\site-packages\numpy__init__.py", line 140, in from . import _distributor_init File "C:\Users\Georg\Anaconda3\lib\site-packages\numpy_distributor_init.py", line 34, in from . import _mklinit ImportError: DLL load failed: Module not Found
So if you use the anaconda environment in VS this might be of some Help. Cheers!