pip用国内源安装第三方库
因为国外的网站访问限速,安装第三方库可能经常报错timeout,可以用参数延长timeout,也可以换源。
比如从清华镜像获取库安装pandas:
pip –default-time=100 install pandas
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas
常见pip下载镜像还有:
阿里:https://mirrors.aliyun.com/pypi/simple
中国科学技术大学:https://pypi.mirrors.ustc.edu.cn/simple
Comments are currently closed.