win10 64位 python3.6 tensorflow安装

近期对tensorflow比较感兴趣,所以安装下来了解了解。

经过多次折腾,目前tensorflow win10 64 下边暂时不支持python2.x.x python3.7.x。所以安装python3.6.

python3.6 安装

Windows x86-64 executable installer

python2 和python3共存冲突处理

先安装那个是正常可用的,只要处理下后安装的即可;我先安装的python2,所以本文只需更改python3的个别配置

添加系统环境变量

在系统环境变量path中添加如上两条

修改python执行文件,区分python2 python3

将对应后安装python目录下python.exe pythonw.exe 修改为python3.exe pythonw3.exe

重新安装pip,修复pip

python3  -m pip install --upgrade pip --force-reinstall

修复调整效果如下:
添加完环境变量,改完python3执行文件效果

修复完pip3效果

win10 64位 python3.6 tensorflow安装_第1张图片

安装tensorflow

pip3 install tensorflow

你可能感兴趣的:(TensorFlow,机器学习)