簡體   English   中英

無法導入 tensorflow - 無法加載本機 tensorflow 運行時

[英]Unable to import tensorflow - Failed to load native tensorflow runtime

我已經通過 Anaconda 使用 tensorflow 有一段時間了。 今天,我的電腦崩潰了,我不得不再次重新安裝 Anaconda,今天安裝 tensorflow 后,每次嘗試導入它時,都會出現以下錯誤 -

(base) C:\Users\Pragyaditya Das>python
Python 3.7.6 (default, Jan  8 2020, 20:23:39) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as t
Traceback (most recent call last):
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.py", line 58, in <module>
    from tensorflow.python.pywrap_tensorflow_internal import *
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_internal.py", line 28, in <module>
    _pywrap_tensorflow_internal = swig_import_helper()
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
  File "C:\Users\Pragyaditya Das\anaconda3\lib\imp.py", line 242, in load_module
    return load_dynamic(name, filename, file)
  File "C:\Users\Pragyaditya Das\anaconda3\lib\imp.py", line 342, in load_dynamic
    return _load(spec)
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 "<stdin>", line 1, in <module>
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow\__init__.py", line 101, in <module>
    from tensorflow_core import *
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\__init__.py", line 40, in <module>
    from tensorflow.python.tools import module_util as _module_util
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow\__init__.py", line 50, in __getattr__
    module = self._load()
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow\__init__.py", line 44, in _load
    module = _importlib.import_module(self.__name__)
  File "C:\Users\Pragyaditya Das\anaconda3\lib\importlib\__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\python\__init__.py", line 49, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.py", line 74, in <module>
    raise ImportError(msg)
ImportError: Traceback (most recent call last):
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow.py", line 58, in <module>
    from tensorflow.python.pywrap_tensorflow_internal import *
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_internal.py", line 28, in <module>
    _pywrap_tensorflow_internal = swig_import_helper()
  File "C:\Users\Pragyaditya Das\anaconda3\lib\site-packages\tensorflow_core\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
  File "C:\Users\Pragyaditya Das\anaconda3\lib\imp.py", line 242, in load_module
    return load_dynamic(name, filename, file)
  File "C:\Users\Pragyaditya Das\anaconda3\lib\imp.py", line 342, in load_dynamic
    return _load(spec)
ImportError: DLL load failed: The specified module could not be found.


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.

當我做pip freeze | findstr tensorflow pip freeze | findstr tensorflow ,我得到以下細節 - tensorflow==2.1.0 tensorflow-estimator==2.1.0

我在這里和 tensorflow 的 github repo 中經歷了各種答案,但徒勞無功。

任何幫助都提前表示贊賞。

在等待回復的過程中,我自己解決了錯誤。 分步指南如下:

  1. 安裝VS 2017 ,tensorflow 不使用它,但它有助於 CUDA 工具包的順利安裝。
  2. 從 Windows 設備管理器更新NVDIA 驅動程序
  3. 下載並安裝CUDA 工具包(版本 10.1)
  4. 下載並解壓CUDnn 7.6.5 將提取的文件復制到C盤的文件夾中。
  5. 添加~\\NVIDIA GPU Computing Toolkit\\CUDA\\v10.1\\bin~\\NVIDIA GPU Computing Toolkit\\CUDA\\v10.1\\bincudnn-10.1-windows10-x64-v7.6.4.38\\cuda\\bin到 PATH

在上述步驟解決問題后, import tensorflow as tf

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM