https://python-poetry.org/docs/#installation
## [[Windows]]
### v1.1.14の場合
どのバージョンからこのコマンドになったかは謎。
```powershell
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python3 -
```
### v1.1.7以降のバージョン
```powershell
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py -UseBasicParsing).Content | python3 -
```
### v1.1.7より前のバージョン
```powershell
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python3 -
```
## [[Linux]]
### v1.4.2
```console
curl -sSL https://install.python-poetry.org | python3 -
```
PATHに`$HOME/.local/bin`を追加。