Python设置镜像
注:如下命令仅为当前用户生效,建议仅为非root用户配置镜像,并在非root用户下安装三方库:
## 配置国内镜像
python -m pip install --upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
## 查看当前镜像
pip config list
## 恢复到默认源
pip config unset global.index-url
## 从指定镜像源安装某个软件包
pip install -i <package-name> https://pypi.tuna.tsinghua.edu.cn/simple