安装tensorflow时候报错ImportError: DLL load failed: 找不到指定的模块。Failed to load the native TensorFlow runtime.

2021-10-18 10:11:32 浏览数 (1)

问题:

安装tensorflow时候报错ImportError: DLL load failed: 找不到指定的模块。Failed to load the native TensorFlow runtime.

解决方法:降低tensorflow版本,版本太高。在terminal复制粘贴以下命令:

pip install tensorflow==2.0

这样就可以运行了,比如如下代码(这是我):

代码语言:javascript复制
import tensorflow as tf  

s = tf.constant([[1, 2, 3], [4, 5, 6]])  
print("s : ", s)  

0 人点赞