解决 Python 安装库时速度慢或者超时问题

设置超时时间

1
pip --default-timeout=1000 install jieba

-i 指定源

1
pip install wordcloud -i https://pypi.tuna.tsinghua.edu.cn/simple/

更改默认设置

~/.pip/pip.conf
1
2
3
4
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

本站由 VITAN 使用 Stellar 主题创建。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。