推荐的国内镜像站
[ 个人推荐清华大学pypi镜像站(https://mirrors.tuna.tsinghua.edu.cn/help/pypi/),每五分钟同步一次,资源丰富,下载速度很快 ] :
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
豆瓣:http://pypi.douban.com/simple/
临时使用国内镜像源进行 pip安装
1
2
3
4
|
pip install - i http: / / pypi.douban.com / simple / numpy #如果上一个提示不受信任,就使用这个,此参数“--trusted-host”表示信任 pip install - i http: / / pypi.douban.com / simple / - - trusted - host pypi.douban.com |
永久使用国内镜像源进行 pip安装
1.Windows平台安装方式
进入相应目录下 C盘->Users/用户->xxx->新建pip文件夹
进入pip文件夹->新建pip.ini文件
进入pip.ini文件,并添加配置如下:(清华源)
1
2
3
4
|
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = https://pypi.tuna.tsinghua.edu.cn # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任 |
修改完成后保存,启动cmd,使用 " pip install xxx "(xxx为你要下载的包名),即可默认使用国内源下载。
- #我下载的是python的numpy函数库
- pip install numpy
- ==》报错解决
- #此命令有可能报错:文件拒绝访问,需要以管理员权限运行cmd窗口
- #或者下载失败,可能是被他人挤占导致失败,可以再次输入命令重试即可
2.Linux平台安装方式
切换目录,并新建 .pip 文件夹
1
2
|
cd ~/.pip mkdir ~/.pip |
进入 .pip 文件夹,并新建 pip.conf 文件
1
2
|
cd ~/.pip touch pip.conf |
在 pip.conf 文件中添加配置
1
2
3
4
5
6
|
vi pip.conf ==>(添加信息) [global] index-url = https: //pypi .tuna.tsinghua.edu.cn /simple [ install ] trusted-host = https: //pypi .tuna.tsinghua.edu.cn # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任 |
保存退出即可,然后下载你需要的资源。
到此这篇关于Python-pip配置国内镜像源的安装方式的文章就介绍到这了,更多相关Python pip国内镜像源内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/weixin_42151880/article/details/108084264