본문 바로가기

Computer Science/Python

[python] poetry 설치

반응형

시스템 요구사항:

- Poetry requires Python 2.7 or 3.5+.

- It is multi-platform and the goal is to make it work equally well on Windows, Linux and OSX.

 

osx / linux / bashonwindows 설치 명령어:

curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -

 

windows powershell 설치 명령어:

(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -

 

설치확인:

poetry --version

 

출처: portry 공식 사이트

https://python-poetry.org/docs/

 

Introduction | Documentation | Poetry - Python dependency management and packaging made easy

Using alternative installation methods will make Poetry always use the Python version for which it has been installed to create virtualenvs. So, you will need to install Poetry for each Python version you want to use and switch between them.

python-poetry.org

 

반응형