使用命令修改Python的PIP源

使用命令修改Python的PIP源,第1张

概述使用命令修改PIP源有两种方法:1.临时修改示例:使用清华源安装numpypipinstall-ihttps://pypi.tuna.tsinghua.edu.cn/simplenumpy2.永久修改示例:将pip源永久替换为阿里,并使用新源安装numpy#配置源pipconfigsetglobal.index-urlhttps://mirrors.aliyun.com/pypi/si

使用命令修改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源所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1187681.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存