Python
pyproject.toml 개발환경 세팅 방법 (feat. poetry)
devdiary
2024. 3. 3. 15:08
728x90
git fork 한 프로젝트에 pyproject.toml이 있는 경우 poetry를 이용하여 간단하게 가상환경을 세팅할 수 있음
pip install --upgrade pip
pip install poetry
poetry install
poetry shell
728x90