1.下载和安装
windows目前只支持python3.5,所以可以安装集成ananconda3。
可以用以下链接:
ananconda3 windows 64位
https://repo.continuum.io/archive/Anaconda3-4.2.0-Windows-x86_64.exe
windows32位的提示不支持,解决方案:
可以去官网上https://repo.continuum.io/archive/ 这个链接找到anaconda4.2.0-windows版本的来下载。(官网链接,也包含了其它的链接)
2.安装过程中的错误提示以及环境变量的配置
如果安装过程中有错误提示:(failed to create anacoda menu)对我来说:http://blog.csdn.net/lixiangyong123/article/details/55816168这个方法不错,并且这个方法解决后需要自己配置环境变量:https://zhuanlan.zhihu.com/p/24055668
如果没有错误提示,环境变量会自己生成。
错误提示的参考链接:https://www.zhihu.com/question/42263480
安装好后重启命令行,输入python,即表示环境配置成功。
python3安装成功.PNG
3.python3和python2.7共存解决方案,参考链接
http://blog.csdn.net/Infin1te/article/details/50445217
4.安装tensorflow
启动cmd直接在命令行里运行:
pip install --upgrade --ignore-installed tensorflow
报错:
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
You are using pip version 8.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip'
command.
如果报错版本不对,按照提示的命令安装新的版本。
如果还不对,可以用管理员权限打开命令行。
报错:
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
我安装的ananconda3是32位的,试了64位的,机器不支持,所以就只好卸载了重新装。
还是不行python 64位只支持64位的系统。
重装系统吧。
查看了系统,cpu是64位的,放心地果断去下了win10的系统并尝试去安装。
重装了64位系统后:执行命令
pip install --upgrade --ignore-installed tensorflow
安装成功。
参考链接:https://zhuanlan.zhihu.com/p/24055668
because my keyboard is broken down, and only can write in english.
other referance links :
http://blog.csdn.net/infin1te/article/details/50445217
anaconda2 and anaconda3 all exists in my computer
网友评论