Skip to content

Instantly share code, notes, and snippets.

@bollard
bollard / poetry.ps1
Created November 5, 2023 14:37
Installing / uninstalling Poetry on Windows (Powershell)
# install
powershell -Command { $env:POETRY_HOME="D:/Poetry"; (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python - }
# uninstall
powershell -Command { $env:POETRY_HOME="D:/Poetry"; (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python - --uninstall }