poetry安装、升级和换源
一、安装
pip install --upgrade --user pip pipx pipx install poetry poetry --version # Poetry (version 1.3.2)
二、换源
(注)如果有git,直接执行这个命令就会自动完成安装插件和换源:git clone https://github.com/waketzheng/carstino && python carstino/pip_conf.py --poetry
1. 安装插件(https://github.com/arcesium/poetry-plugin-pypi-mirror)
- 方法一:使用pipx
pipx inject poetry poetry-plugin-pypi-mirror
- 方法二:使用poetry self
poetry self add poetry-plugin-pypi-mirror
- 注:这两个方法的卸载命令分别是
pipx runpip poetry uninstall xxx
和poetry self remove xxx
2. 按照插件文档修改默认源
- 方法一:改配置文件
新建或修改配置文件config.toml,增加如下内容
(该toml文件路径是:Linux系统在~/.config/pypoetry/
,Windows在%APPDATA%\pypoetry\
,Mac在~/Library/Preferences/pypoetry/
)
[plugins] [plugins.pypi_mirror] url = "https://mirrors.cloud.tencent.com/pypi/simple/"
* 注:更改url的值即可换用其他镜像源
- 方法二:环境变量
export POETRY_PYPI_MIRROR_URL=https://mirrors.cloud.tencent.com/pypi/simple/
三、升级poetry
poetry self update
附:在Windows系统的Git Bash里执行poetry install并不会安装依赖,这时可以执行这个:
poetry export --with=dev --without-hashes -o requirements.txt && pip install -r requirements.txt