无法加载本机TensorFlow运行时。?

时间:2020-11-07 23:27:56

标签: python tensorflow

我正在尝试导入tensorflow,但是每次我做import tensorflow时,都会收到这个令人讨厌的错误,它说 “无法加载本机TensorFlow运行时。”我已经将我的错误纳入调查 https://www.tensorflow.org/install/errors,但我仍未找到答案,但我可能错过了,但是....

我的错误:

ImportError: Traceback (most recent call last):
  File "C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 64, in <module>
    from tensorflow.python._pywrap_tensorflow_internal import *
ImportError: DLL load failed: The specified module could not be found.

如果我在控制台中执行pip install tensorflow,我也会使用pip install tensorflow,我会收到“要求已满足:c:\ programdata \ anaconda3 \ lib \ site-packages(2.3.1)中的张量流” 但是当我做import tensorflow时,我得到了Import Error

我的点子版本是20.2.4

2 个答案:

答案 0 :(得分:1)

我想出了我该怎么做: pip install tensorflow==1.15

答案 1 :(得分:1)

您正在使用Anaconda,它将支持

Tensorflow == 2.1.0

为张量流创建新环境

conda create -n tf tensorflow
activate tf