Skip to content

Instantly share code, notes, and snippets.

@bollard
Created November 5, 2023 14:37
Show Gist options
  • Save bollard/9c89bdb8cb1b6a67153d336dc6e418b6 to your computer and use it in GitHub Desktop.
Save bollard/9c89bdb8cb1b6a67153d336dc6e418b6 to your computer and use it in GitHub Desktop.
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 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment