Python 使用pip install 时报错(WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, )
weixin_43679228 2024-07-31 08:35:01 阅读 69
Python中使用pip install 命令安装pyecharts包时报错
一、错误如下图所示
出错显示:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000002787D928D68>, 'Connection to pypi.org timed out. (connect timeout=15)')': /simple/pyecharts/
二、错误解决办法
1.更新pip
python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
2.设置镜像源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
3.重新安装
pip install pyecharts
三、结果
上一篇: 【Python系列】isin用法
本文标签
redirect=None connect=None Python 使用pip install 时报错(WARNING: Retrying (Retry(total=4 read=None
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。