【问题标题】:TensorFlow Error: ImportError: DLL load failed with error code 3221225501 while importing _pywrap_ tensorflow_internal in Python3.8TensorFlow 错误:ImportError: DLL load failed with error code 3221225501 while importing _pywrap_ tensorflow_internal in Python3.8
【发布时间】:2020-08-07 00:53:11
【问题描述】:

在导入 TensorFlow 时如何解决此错误:

  1. Python 3.8.4。
  2. Windows 7 Ultimate 64 位。
  3. 2GB 内存。
  4. Intel(R) Celeron(R) CPU N2840 @ 2.16GHz。
  5. 英特尔(R) 高清显卡。
>>> import tensorflow as tf
Traceback (most recent call last):
  File "G:\Users\Abdo-Prgraming\AppData\Roaming\Python\Python38\site-packages\te
nsorflow\python\pywrap_tensorflow.py", line 64, in <module>
    from tensorflow.python._pywrap_tensorflow_internal import *
ImportError: DLL load failed with error code 3221225501 while importing _pywrap_
tensorflow_internal

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "G:\Users\Abdo-Prgraming\AppData\Roaming\Python\Python38\site-packages\tensorflow\__init__.py", line 41, in <module>
    from tensorflow.python.tools import module_util as _module_util
  File "G:\Users\Abdo-Prgraming\AppData\Roaming\Python\Python38\site-packages\tensorflow\python\__init__.py", line 40, in <module>
    from tensorflow.python.eager import context
  File "G:\Users\Abdo-Prgraming\AppData\Roaming\Python\Python38\site-packages\tensorflow\python\eager\context.py", line 35, in <module>
    from tensorflow.python import pywrap_tfe
  File "G:\Users\Abdo-Prgraming\AppData\Roaming\Python\Python38\site-packages\tensorflow\python\pywrap_tfe.py", line 28, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "G:\Users\Abdo-Prgraming\AppData\Roaming\Python\Python38\site-packages\tensorflow\python\pywrap_tensorflow.py", line 83, in <module>
    raise ImportError(msg)
ImportError: Traceback (most recent call last):
  File "G:\Users\Abdo-Prgraming\AppData\Roaming\Python\Python38\site-packages\tensorflow\python\pywrap_tensorflow.py", line 64, in <module>
    from tensorflow.python._pywrap_tensorflow_internal import *
ImportError: DLL load failed with error code 3221225501 while importing _pywrap_tensorflow_internal


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.

【问题讨论】:

    标签: python python-3.x tensorflow package


    【解决方案1】:

    我遇到了类似的问题,我的解决方案是通过 Anaconda 虚拟环境安装 tensorflow。

    从他们的official website 安装 Anaconda 并创建虚拟环境 然后打开 Anaconda Prompt...

    conda create -n name_of_the_env
    conda activate name_of_the_env
    conda install tensorflow
    

    【讨论】:

    • 默认是tensorflow 2
    猜你喜欢
    • 1970-01-01
    • 2021-06-14
    • 2021-05-17
    • 2021-02-16
    • 1970-01-01
    • 2020-04-10
    • 1970-01-01
    • 1970-01-01
    • 2021-12-06
    相关资源
    最近更新 更多