반응형
- 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 수행
반응형
'Development > Python' 카테고리의 다른 글
conda 로 pymol, openbabel 설치시 주의사항 (0) | 2024.01.18 |
---|---|
Python. poetry with requirements.txt (0) | 2024.01.18 |
[zappa] error (0) | 2020.10.13 |
[Python] 파이썬 Zappa로 flask web app을 AWS Lambda에 서버리스로 구현하기 (0) | 2020.10.13 |
[Python] 내장함수 id() (0) | 2020.10.06 |