导入错误:tf、win8.1 的 DLL 加载失败

时间:2021-02-20 19:22:26

标签: python-3.x tensorflow tensorflow2.0

我正在尝试使用 Tensorflow 检测对象。我使用的是 CPU,而不是 GPU。 采用英特尔赛扬处理器,无显卡-高清显卡,Win8.1。 我知道规格很低,但经过几个步骤后,我将使用 Colab。安装了 Python 3.7 和 tensorflow 2.3 版本。我想导入 Tensorflow 时遇到的错误:

File "C:\Python37\lib\imp.py", line 243, in load_module
    return load_dynamic(name, filename, file)
  File "C:\Python37\lib\imp.py", line 343, in load_dynamic
    return _load(spec)
ImportError: DLL load failed: Devingen bağlantı kitaplığını (DLL) başlatma işlem
i başarısız.


Failed to load the native TensorFlow runtime.

See https://www.tensorflow.org/install/errors

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

我在其他检测中也遇到了这个问题。我在 cmd 屏幕上工作。我所做的一切都没有发生。请帮忙:/

所有代码:

Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. Tüm hakları saklıdır.

C:\Users\eycan>python
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD6
4)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.p
y", line 58, in <module>
    from tensorflow.python.pywrap_tensorflow_internal import *
  File "C:\Python37\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_i
nternal.py", line 28, in <module>
    _pywrap_tensorflow_internal = swig_import_helper()
  File "C:\Python37\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_i
nternal.py", line 24, in swig_import_helper
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, descript
ion)
  File "C:\Python37\lib\imp.py", line 243, in load_module
    return load_dynamic(name, filename, file)
  File "C:\Python37\lib\imp.py", line 343, in load_dynamic
    return _load(spec)
ImportError: DLL load failed: Devingen bağlantı kitaplığını (DLL) başlatma işlem
i başarısız.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python37\lib\site-packages\tensorflow\__init__.py", line 101, in <mod
ule>
    from tensorflow_core import *
  File "C:\Python37\lib\site-packages\tensorflow_core\__init__.py", line 40, in
<module>
    from tensorflow.python.tools import module_util as _module_util
  File "C:\Python37\lib\site-packages\tensorflow\__init__.py", line 50, in __get
attr__
    module = self._load()
  File "C:\Python37\lib\site-packages\tensorflow\__init__.py", line 44, in _load

    module = _importlib.import_module(self.__name__)
  File "C:\Python37\lib\importlib\__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "C:\Python37\lib\site-packages\tensorflow_core\python\__init__.py", line
49, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "C:\Python37\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.p
y", line 74, in <module>
    raise ImportError(msg)
ImportError: Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.p
y", line 58, in <module>
    from tensorflow.python.pywrap_tensorflow_internal import *
  File "C:\Python37\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_i
nternal.py", line 28, in <module>
    _pywrap_tensorflow_internal = swig_import_helper()
  File "C:\Python37\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_i
nternal.py", line 24, in swig_import_helper
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, descript
ion)
  File "C:\Python37\lib\imp.py", line 243, in load_module
    return load_dynamic(name, filename, file)
  File "C:\Python37\lib\imp.py", line 343, in load_dynamic
    return _load(spec)
ImportError: DLL load failed: Devingen bağlantı kitaplığını (DLL) başlatma işlem
i başarısız.


Failed to load the native TensorFlow runtime.

See https://www.tensorflow.org/install/errors

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

0 个答案:

没有答案