您的当前位置:首页正文

win10 tensorflow windows安装问题和解决步

来源:图艺博知识网

安装好后重启命令行,输入python,即表示环境配置成功。


python3安装成功.PNG

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
安装成功。

Top