使用命令修改PIP源有两种方法:
1. 临时修改示例:使用清华源安装numpy
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy
2. 永久修改示例:将pip源永久替换为阿里,并使用新源安装numpy
# 配置源pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/# 安装numpypip install numpy
附:国内常用源# 清华源pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple# 阿里源pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/# 腾讯源pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple# 豆瓣源pip config set global.index-url http://pypi.douban.com/simple/
总结 以上是内存溢出为你收集整理的使用命令修改Python的PIP源全部内容,希望文章能够帮你解决使用命令修改Python的PIP源所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)