ImportError:python3.5中没有名为''u pywrap_tensorflow_internal'的模块

2024-06-11 09:49:15 发布

您现在位置:Python中文网/ 问答频道 /正文

当我试图在Windows10,Python3.5版导入tensorflow时遇到了这个错误 这是cpu验证,我有MSVCP140.DLL。在

我在SO上发现了很多问题,所以我把python降级到3.5版本,并安装了MSVCP140.DLL。。。。怎么了?在

Traceback (most recent call last):
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in swig_import_helper
    fp, pathname, description = imp.find_module('_pywrap_tensorflow_internal', [dirname(__file__)])
  File "E:\tensorflow_study\tensorflow\lib\imp.py", line 296, in find_module
    raise ImportError(_ERR_MSG.format(name), name=name)
ImportError: No module named '_pywrap_tensorflow_internal'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module>
    from tensorflow.python.pywrap_tensorflow_internal import *
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <module>
    _pywrap_tensorflow_internal = swig_import_helper()
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_import_helper
    import _pywrap_tensorflow_internal
ImportError: No module named '_pywrap_tensorflow_internal'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\__init__.py", line 24, in <module>
    from tensorflow.python import *
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\__init__.py", line 49, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in <module>
    raise ImportError(msg)
ImportError: Traceback (most recent call last):
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in swig_import_helper
    fp, pathname, description = imp.find_module('_pywrap_tensorflow_internal', [dirname(__file__)])
  File "E:\tensorflow_study\tensorflow\lib\imp.py", line 296, in find_module
    raise ImportError(_ERR_MSG.format(name), name=name)
ImportError: No module named '_pywrap_tensorflow_internal'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module>
    from tensorflow.python.pywrap_tensorflow_internal import *
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <module>
    _pywrap_tensorflow_internal = swig_import_helper()
  File "E:\tensorflow_study\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_import_helper
    import _pywrap_tensorflow_internal
ImportError: No module named '_pywrap_tensorflow_internal'


Failed to load the native TensorFlow runtime.

See https://www.tensorflow.org/install/install_sources#common_installation_problems

for some common reasons and solutions.  Include the entire stack trace
above this error message when asking for help.

编辑:我用了这个推荐词

^{pr2}$

安装tensorflow。这是不是犯了这个错误?在


Tags: inpyimportlibpackagestensorflowlinesite
1条回答
网友
1楼 · 发布于 2024-06-11 09:49:15

这与CPU或GPU没有直接关系。在特斯拉的gpu和mac的CPU中,时不时会出现这个错误。最近我在osx上使用了1.13版本,在我更新到新的beta版本之前,我尝试过在它的github上写的东西或者在这里都没用。请注意,您必须将“keras”更改为tensorflow.keras公司“导入库时。在

pip install tensorflow==2.0.0-beta0 

相关问题 更多 >