# Install Poetry Python Package manager (as of 2020-05)
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
# python3
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
# python2
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
# Install Poetry Python using this command the others are deprecated
curl -sSL https://install.python-poetry.org/ | python3
curl -sSL https://install.python-poetry.org | python3 -
#Windows
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
# On Windows PowerShell:
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -