-
-
Save zofy29/ed7772b84a05de6d542dedfe9ee9fe40 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