pip install + 模块名 安装时遇到Traceback (most recent call last)...ReadTimeoutError怎么办

使用pip install + 模块名安装时常常会遇到如下的问题:
Traceback (most recent call last):
File “c:\users\lenovo\python\lib\site-packages\pip_vendor\resolvelib\resolvers.py”, line 171, in _merge_into_criterion…(此处省略多行)
报错信息如下图所示:pip install + 模块名 安装时遇到Traceback (most recent call last)...ReadTimeoutError怎么办_第1张图片
pip install + 模块名 安装时遇到Traceback (most recent call last)...ReadTimeoutError怎么办_第2张图片
仔细阅读报错信息可知,这是由于网络不良导致的"The read operation timed out"和"ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out." 下载速度太慢以至于超时了。

解决办法:更换一个下载源:

清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣:http://pypi.douban.com/simple/
阿里云:https://mirrors.aliyun.com/pypi/simple/

下载命令也改为:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy (numpy是我要下载的模块,依照自身要求替换)若对版本有指定要求可在后面加上如==0.16.0进行版本控制,下载效果如上图所示。

你可能感兴趣的:(强化学习,python)