—— 阿尔伯特·爱因斯坦

程序员の奇妙冒险

PythonPython
2025-10-08 17:41阅读:22评论:0

Python 安装依赖包时指定国内镜像源

以Django为例 安装时指定 执行命令 python -m pip install Django -i https://pypi.tuna.tsinghua.edu.cn/simple/ 永久生效

_PROTECTED0_PROTECTED2_PROTECTED1__
1
2
3
4
5
# 设置默认镜像源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
# 设置信任主机
pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn
 
评论(0)
暂无评论来抢沙发吧~