我正在使用以下 curl 命令安装诗歌
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
但是诗歌被卡住了,如图所示。有什么帮助吗?
我正在使用以下 curl 命令安装诗歌
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
但是诗歌被卡住了,如图所示。有什么帮助吗?
它可能与 pip 和密钥环的潜在使用有关,它也发生在 Poetry 中,发现这是根本原因(参见https://github.com/pypa/pip/issues/7883)
我的临时解决方法是通过设置环境变量来禁用密钥环。
export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python