百木园-与人分享,
就是让自己快乐。

使用默认pypi源出现连接超时

背景信息

安装 dataworks sdk 时报错,原因是连接默认的 pypi 仓库超时

pip install aliyun-python-sdk-dataworks-public==4.2.1

报错信息

Retrying (Retry(total=4, connect=None, read=None, redirect=None)) 
after connection broken
by \'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.
VerifiedHTTPSConnection object at 0x10b058850>, 
\'Connection to pypi.python.org timed out. (connect timeout=15)\')\':

解决方法

将默认的国外官网的 pypi 源替换为国内常用的 pypi 源,国内常用的 pypi 源有以下几个

  • 阿里云 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/

命令行安装并指定 pypi 源

pip install aliyun-python-sdk-dataworks-public==4.2.1 -i http://mirrors.aliyun.com/pypi/simple/

如果出现以下报错,则还需要添加额外的选项 --trusted-host mirrors.aliyun.com

pypi.douban.com is not a trusted or secure host and is being ignored...

添加选项 --trusted-host mirrors.aliyun.com

pip install aliyun-python-sdk-dataworks-public==4.2.1 -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

PyCharm 中增加 pypi 源

Pycharm->Prefercence->Manage Repositories,在此将阿里云的 pypi 源添加进去
image.png

如果出现以下报错,则还需要在右下角添加额外的选项 --trusted-host mirrors.aliyun.com

pypi.douban.com is not a trusted or secure host and is being ignored...

image.png

参考

  • 使用默认pypi源出现连接超时的解决办法
  • GetDISyncTask

来源:https://www.cnblogs.com/ymsu/p/17163543.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » 使用默认pypi源出现连接超时

相关推荐

  • 暂无文章