|
主要流程参考 :
https://blog.csdn.net/cs_hnu_scw/article/details/79695347
注意点:
不建议使用该文章中的如下方式安装Tensorflow
4:进行正式的安装Tensorflow
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
5:通过命令:pip install --upgrade --ignore-installed tensorflow
建议使用国内镜像源安装,如清华的Tensorflow镜像源或者
pip install --index-url https://pypi.douban.com/simple tensorflow(python3.7.2下正常安装)
或pip install --index-url http://mirrors.aliyun.com/pypi/simple/ tensorflow(python3.7.2安装报错,3.6.5下正常安装)
安装的速度会快很多,报错的概率也小很多 |