Saturday, 17 November 2018
ImportError: DLL load failed: The specified module could not be found
While executing tensorflow via Jupyter
import tensorflow as tf
getting following error "ImportError: DLL load failed: The specified module could not be found"
Solution:
Downgraded TensorFlow to 1.10.0 and it worked
# GPU package for CUDA-enabled GPU cards
pip install tensorflow-gpu==1.10.0
# Current release for CPU-only
pip install tensorflow==1.10.0
Also verify if following DLL are present in C:\Windows\System32 folder:
msvcp71.dll, msvcr71.dll, nvcuda.dll
Else download them from the web and,
Save them to your C:\Windows\System32 folder.
Save them to your C:\Windows\SysWOW64 folder as well (if you have a 64-bit operating system)
Subscribe to:
Post Comments (Atom)
Videos based solutions
City / Traffic Surveillance Target Sectors Government Sectors Traffic Surveillance Highway and State Road Surveillance Defense Ai...
-
tesseract_ocr.cpp(626): fatal error C1083: Cannot open include file: 'leptonica/allheaders.h': No such file or directory error...
-
Type Data Structure: Data Structure can be defined as the specific form of organizing and storing the data. R Programming supports five ...
-
Conditional Statement: In R we have two Conditional Statement. One is If else Statement and another one is Nested If Else Statement. It ...
No comments:
Post a Comment