TensorFlow安装中pip install tensorflow报错解决

仅解决pip install tensorflow报错问题,其他步骤请参考https://blog.csdn.net/weixin_42555080/article/details/100704078

在安装TensorFlow时,产生报错:WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError(‘Cannot connect to proxy.’, NewConnect.

可以将镜像地址更改为阿里云的地址,这样不仅可以解决这个问题,而且以后使用pip时不需要科学上网就可以满速下载了。
具体做法如下:
打开C:\Users\自己的用户名\AppData\Roaming然后看该目录下有没有pip文件夹(若没有则创建一个),然后进入其中,创建(若本来就有则修改)pip.ini,内容改为
[global]
index-url = https://mirrors.aliyun.com/pypi/simple
trusted-host = https://mirrors.aliyun.com
(需要注意的是,如果在后面带了注释,会报错)

如果依然报错的话,可以试试如下指令
pip install --upgrade tensorflow -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

你可能感兴趣的:(tensorflow,python,pip,阿里云,anaconda)