https://python-poetry.org/docs/#windows-powershell-install-instructions ## [[Windows]] ### v1.1.14の場合 どのバージョンからこのコマンドになったかは謎。 ```powershell (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python - --uninstal ``` ### v1.1.7以降のバージョン ```powershell (Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py -UseBasicParsing).Content | python - --uninstal ``` ### v1.1.7より前のバージョン ```powershell (Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python - --uninstal ``` ## [[Linux]] ### v1.4.2 ```console curl -sSL https://install.python-poetry.org | python3 - --uninstall ```