https://python-poetry.org/docs/#installing-with-the-official-installer linux
- linux, macOS, window(WSL)
curl -sSL https://install.python-poetry.org | python3 -
- window(PowerShell)
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -
- linux
- window 시스템 PATH에 아래 추가
C:\Users\ydj51\AppData\Roaming\Python\Scripts
poetry --version
poetry new demo
poetry init # 이미 생성된 디렉토리에 시작할때
poetry shell
poetry install
poetry add fastapi