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

1 启动Anaconda虚拟环境
安装Tensorflow与keras前,先启动Tensorflow的Anaconda虚拟环境。
activate myTensorEnv
2 安装Tensorflow
在命令提示符窗口输入下列命令,安装Tensorflow:
pip install tensorflow
如何在Anaconda虚拟环境安装Tensorflow与Keras

 



出现上述界面时,表明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

上一篇:Spark 集群 任务提交模式


下一篇:PyTorch 和 Tensorflow 学哪个?上手简单的PyTorch考虑一下!