关于tensorflow:win10系统-Anaconda安装tensorflow1140cpu版本

4次阅读

共计 343 个字符,预计需要花费 1 分钟才能阅读完成。

1.conda 设置国内源,放慢下载速度,不然速度会十分慢

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

conda config --set show_channel_urls yes

2. 创立 python3.6 版本的虚拟环境

conda create -n tf114 python=3.6

3. 进入 tf114 环境

conda activate tf114

4. 用 conda 装置 tensorflow

conda install tensorflow=1.14.0

5. 参考文献

通过 Anaconda3 装置 Tensorflow 1.15.0 记录

6. 总结

过程十分快,大略 10-20 分钟。
我的 conda 版本是 4.12.0

正文完
 0