python安装第三方库超时报错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python安装第三方库超时报错相关的知识,希望对你有一定的参考价值。
参考技术A 1.pip安装第三方包报错,原因是超时,可能因为默认的库源不稳定,或者网络限制原因。解决方法:pip --default-timeout=100 install -U pandas //设置超时时间
如果以上语句还是不行,直接切换库源,使用清华的资源库。
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U pandas
这两条语句也可以结合使用。
另一个超时的报错,可以使用--upgrade参数解决(为啥一直报超时的错呢?公司网络限制太多了啦)
pip install --upgrade -i https://pypi.tuna.tsinghua.edu.cn/simple -U pandas
2.使用以上方法安装好了package后,在pycharm中要加载这个包,可以在新建工程的时候,勾选inherit global site-packages
pip 安装三方库报超时
python安装第三方库,超时报错 Read timed out,解决方法:
1、设置超时时间:
pip --default-timeout=100 install -U pandas
2、更换安装源:
pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
以上是关于python安装第三方库超时报错的主要内容,如果未能解决你的问题,请参考以下文章
python 安装第三方库,超时报错--Read timed out.