?
参考
阿里巴巴开源镜像站
【centos7安装pip并配置国内阿里镜像源】centos7安装pip并配置国内阿里镜像源
首先安装pip前需要安装epel-release
yum -y install epel-release
文章图片
安装pip
yum -y install python-pip
文章图片
查看pip版本
pip --version
文章图片
配置阿里镜像源(修改pip.conf)
cd ~
mkdir .pip
cd .pip
touch pip.conf
vi pip.conf
文章图片
修改为以下并保存
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/[install]
trusted-host=mirrors.aliyun.com
文章图片
完成
?
推荐阅读
- Python|Linux Python 安装第三方库时报错 package wheel is not installed
- windows系统下跟换pypi国内阿里镜像源(pip)
- Ubuntu安装pip并切换国内源