python [poetry]安装被卡住

时间:2019-11-05 10:04:19

标签: python-poetry

enter image description here

我正在使用以下curl命令安装诗歌

 curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python

但是诗歌被卡住了,如图所示。有帮助吗?

1 个答案:

答案 0 :(得分:1)

这可能与pip和密钥环的底层用法有关,在诗歌中我也碰巧发现了其根本原因(请参见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