相关配置
使用 pip 的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple
临时使用:
例如:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -f requirements.txt
这样就会从清华这边的镜像去安装依赖。
永久修改:
linux 下
修改 ~/.pip/pip.conf (没有就创建一个), 修改 index-url 至 tuna,内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
mac 下
mkdir ~/.pip
tee ~/.pip/pip.conf <<-'EOF'
[global]
index-url=http://mirrors.http://aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
EOF
效果对比
使用加速之前
配置加速之后
明显速度快的是不是一倍两倍了
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于