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

猜你喜欢

转载自www.cnblogs.com/husbandmen/p/10676014.html