主要记载一下在windows上安装tensorflow遇到的问题及安装步骤。不要在原来的环境上安装,因为会重新安装一套库如numpy等,会导致下载多个版本。
使用Anaconda创建虚拟环境非常方便,这里安装Anaconda的方法可以参考Windows下Anaconda的下载,安装与使用。
conda create -n tensorflow python=3.6
activate tensorflow
pip install tensorflow
在使用pip install tensorflow
安装tensorflow时,报错:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000001B40D0D4948>: Failed to establish a new connection: [WinError 10 051] 向一个无法连接的网络尝试了一个套接字操作。')': /simple/tensorflow/
网上搜索一堆方法用来安装tensoflow:
pip install --upgrade --ignore-installed tensorflow
阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
但是经过网上给的方法进行安装,还是出现错误。
最终的解决办法:
pip install tensorflow -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
tensorflow可以更换为你想下载的库,之后只需要等待即可。
keras搭建在tensorflow基础上,在安装keras安装之前需要安装tensorflow、numpy、matplotlib、scipy。
pip install numpy pip install matplotlib pip install scipy pip install tensorflow pip install keras