Windows平台python 3.6+TensorFlow1.15

最近在学习 Hands-on Machine Learning with Scikit-Learn and TensorFlow 这本书,第二部分需要安装tensorflow说明如下:
因为书上用的是tensorflow1.15,所以同样学习这本书的同学最好也用这个版本(TensorFlow2.0改动很大)

Anaconda

anaconda安装要更方便些,如果没有安装看这里

安装python 3.6虚拟环境

因为我的系统本身是3.8.3的版本:查看:python --version
如果卸载再安装旧版本会非常麻烦,所以建一个3.6的虚拟环境就很有必要:conda create --name tensorflow python=3.6

激活环境

查看虚拟环境是否安装:conda info --envs,存在tensorflow 说明安装成功。
接着激活:activate tensorflow
查看python版本:python --version为3.6.X则成功

安装TensorFlow

直接安装:pip install tensorflow=1.15,稍等一会就安装好了
报错用镜像:

pip install tensorflow=1.15  -i http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com

参考: https://blog.csdn.net/weixin_42555080/article/details/100704078
https://blog.csdn.net/weixin_42001089/article/details/84403842
https://blog.csdn.net/robot_123/article/details/103131567

你可能感兴趣的:(机器学习,tensorflow,anaconda,windows,python)