Created
November 5, 2023 14:37
-
-
Save bollard/9c89bdb8cb1b6a67153d336dc6e418b6 to your computer and use it in GitHub Desktop.
Installing / uninstalling Poetry on Windows (Powershell)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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