License: Attribution-NonCommercial-ShareAlike 4.0 International
本文出自 Suzf Blog。 如未注明,均为 SUZF.NET 原创。
在使用 `pip` 安装 Python 模块的时候我们经常会遇到线面的错误
`ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out.
`
以至于安装模块的时候出现错误,之很让人不爽。
接下来我们将pip的源切换为阿里的源
cd $HOME mkdir ~/.pip cat > ~/.pip/pip.conf << EOF [global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host = mirrors.aliyun.com EOF