如何在Anaconda虚拟环境安装Tensorflow与Keras

2019-09-11 19:07:32 浏览数 (1)

1 启动Anaconda虚拟环境

安装Tensorflow与keras前,先启动Tensorflow的Anaconda虚拟环境。

activate myTensorEnv

2 安装Tensorflow

在命令提示符窗口输入下列命令,安装Tensorflow:

pip install tensorflow

出现上述界面时,表明tensorflow已经在虚拟环境中安装成功。

测试一下:python命令之后:import tensorflow as tf

报错:ImportError: DLL load failed with error code -1073741795

卸载:pip uninstall tensorflow

重新安装:pip install Tensorflow==1.5

成功, 再测:python命令之后:import tensorflow as tf

更多请见:https://blog.csdn.net/qq_44639795/article/details/100705951

0 人点赞