오도원입니다.

건강과 행복을 위하여

Development/Python

poetry repo install

오도원공육사 2023. 6. 27. 16:34
반응형

- pyproject.toml 파일이 있어야함

1. https

poetry add git+https://github.com/repo.git

2. ssh

poetry add git+ssh://github.com/repo.git

3. 태그지정

poetry add git+ssh://github.com/repo.git@{태그}

4. subdirectory 다운로드

poetry add git+ssh://github.com/repo.git#subdirectory={경로}

5. pyproject.toml로 다운로드

패키지 = {git = "ssh://github.com/{유저}/{레포}.git", subdirectory = "{경로}", tag="{태그}"}
 

지정 후, poetry install 수행

반응형