python 의 poetry 간단 설명
python 의 poetry 간단 설명 poetry 는 프로젝트의 의존성 관리와 ㅍ패키지 배포를 간소화하는데 큰 도움을 주는 도구입니다. 설치 : Linux, macOS, Windows (WSL) : curl -sSL https://install.python-poetry.org | python3 - 윈도우 : (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -버전업데이트 : poetry self update프로젝트 추가 : poetry new test-llmhosting프로젝트 추가하지 않고 폴더 만들고 환경 만드는 명령 : poetry ..