1、tensorflow 导入Tensorflow出现ImportError: DLL load failed: 找不到指定的程序
Python3.6+tensorflow 2.1.0
导入import tensorflow as tf
报以下错误
查询各种问题原因由于tensorflow 2.1.0 版本较高,需要安装 CUDA、cuDNN神经网络加速库等,直接降版本
执行:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==1.8
2、numpy与tensorflow 的兼容问题
numpy1.18.1+tensorflow1.8
提示如下警告
错误信息打印:FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type' _np_qint8 = np.dtype([("qint8", np.int8, 1)])
numpy降版本
执行:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy==1.16
安装完成