import tensroflow时出现了ImportError: DLL load failed: 找不到指定的模块的解决办法
程序员文章站
2022-06-26 13:31:40
import tensroflow时出现了ImportError: DLL load failed: 找不到指定的模块的解决办法 在anaconda环境中,使用pip install tensorflow安装了tensorflow后,无论是在正确环境下使用PyChram还是python shell都无法正确加载,出现了如下的问题:(tf) C:\Users\bwq>pythonPython 3.5.2 |Continuum Analytics, Inc.| (default, Jul 5 2...
import tensroflow时出现了ImportError: DLL load failed: 找不到指定的模块的解决办法
在anaconda
环境中,使用pip install tensorflow
安装了tensorflow
后,无论是在正确环境下使用PyChram
还是python shell
都无法正确加载,出现了如下的问题:
(tf) C:\Users\bwq>python
Python 3.5.2 |Continuum Analytics, Inc.| (default, Jul 5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "D:\AnaConda3\envs\tf\lib\site-packages\tensorflow\__init__.py", line 41, in <module>
from tensorflow.python.tools import module_util as _module_util
File "D:\AnaConda3\envs\tf\lib\site-packages\tensorflow\python\__init__.py", line 40, in <module>
from tensorflow.python.eager import context
File "D:\AnaConda3\envs\tf\lib\site-packages\tensorflow\python\eager\context.py", line 35, in <module>
from tensorflow.python import pywrap_tfe
File "D:\AnaConda3\envs\tf\lib\site-packages\tensorflow\python\pywrap_tfe.py", line 29, in <module>
from tensorflow.python._pywrap_tfe import *
ImportError: DLL load failed: 找不到指定的模块。
即为:ImportError: DLL load failed: 找不到指定的模块。
在网上查找了一些资料进行调整后,并没有成功,于是乎想到了可能是tensorflow
和Python
版本不匹配的问题。我这里的python
版本是3.5.2
的。在该网址上https://blog.csdn.net/qq_41621362/article/details/89196753可以查看tensorflow
与python
的匹配版本。
使用如下命令即可:
-
pip uninstall tensorflow
-
删除原来版本的
tensorflow
之后,安装与python3.5.2
所对应的tensorflow
版本,使用命令:pip install tensorflow==1.12.0
。 -
安装成功以后,使用
python shell
再次尝试,已经成功解决问题。
本文地址:https://blog.csdn.net/bwqiang/article/details/110285801
推荐阅读
-
import tensroflow时出现了ImportError: DLL load failed: 找不到指定的模块的解决办法
-
PySide2出现“ImportError: DLL load failed: 找不到指定的模块”的问题及解决方法
-
ImportError: DLL load failed: 找不到指定的模块。
-
tf2在import时报出ImportError: DLL load failed: 找不到指定的模块
-
ImportError: DLL load failed: 找不到指定的模块
-
Python下ImportError: DLL load failed: 找不到指定的模块之问题分析
-
python导包出现:ImportError: DLL load failed: 找不到指定的模块问题解决
-
ImportError: DLL load failed: 找不到指定的模块
-
importError: DLL load failed: 找不到指定的模块。
-
问题解决:ImportError: DLL load failed: 找不到指定的模块。