0

首先,我跑了poetry update,这似乎奏效了。为了验证它是否真的更新了我运行的诗歌版本poetry --version,导致以下错误:

Traceback (most recent call last):
File "C:\Users\XXX\.poetry\bin\poetry", line 17, in <module>
from poetry.console import main
ModuleNotFoundError: No module named 'poetry.console'

为了解决这个错误,卸载诗歌似乎是最好的选择。所以我尝试通过python get-poetry.py --uninstalland卸载诗歌python install-poetry.py --uninstall。两者都导致[Errno 2] No such file or directory。此外,我尝试poetry --uninstall了这也导致了ModuleNotFoundError.

如何卸载诗歌,为什么我的命令不起作用?

4

1 回答 1

0

get-poetry.py并且install-poetry.py是安装程序脚本,必须先下载。您可以将下载和运行结合在一行中,例如:

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

或者

curl -sSL https://install.python-poetry.org | python3 - --uninstall

用于卸载诗歌。对于卸载,您必须使用与安装相同的脚本。

于 2022-01-08T07:54:36.890 回答