Skip to content

Instantly share code, notes, and snippets.

@zofy29
Forked from bollard/poetry.ps1
Created July 9, 2024 03:19
Show Gist options
  • Save zofy29/ed7772b84a05de6d542dedfe9ee9fe40 to your computer and use it in GitHub Desktop.
Save zofy29/ed7772b84a05de6d542dedfe9ee9fe40 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