pip换源、poetry换源

# pip 换源(Windows/Linux/MacOS通用):

方法一:使用脚本(支持Python2和Python3)

wget https://raw.githubusercontent.com/waketzheng/carstino/main/pip_conf.py
# 下载太慢的话,可以用这个加速:
#wget https://g.waketzheng.top/raw.githubusercontent.com/waketzheng/carstino/main/pip_conf.py
python pip_conf.py  # 不带参数默认为腾讯云
python pip_conf.py hw  # 华为
python pip_conf.py ali  # 阿里
python pip_conf.py douban  # 豆瓣

方法二:手动在命令行修改:

# 升级pip版本(可跳过)
python -m pip install -i https://mirrors.cloud.tencent.com/pypi/simple/ --upgrade --user pip
# 配置镜像为腾讯云
pip config set global.index-url https://mirrors.cloud.tencent.com/pypi/simple/

## 2022-05-11 补充

如果是云服务器,可以这样配置:

sudo python pip_conf.py --etc

会配置到/etc目录下,root用户和普通用户都会用这个源

## poetry换源

python pip_conf.py --poetry

将自动加载插件poetry-plugin-pypi-mirror并将镜像源URL写入到config.toml文件

你可能感兴趣的:(python,pip,python)