python安装第三方库报错

@python

1. 安装第三方库是报错

pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out.

解决方法:

pip --default-timeout=100 install 库名称 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 

猜你喜欢

转载自blog.csdn.net/pageniao/article/details/111398297