| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
- re-id
- REDIS
- 미니프로젝트
- 2주차
- 파이썬
- 마스킹
- 알고리즘
- channels
- sql
- resnet50
- github
- 개발일지
- 채팅
- 정보처리기사
- js
- Class
- WIL
- WHERE절
- 장고
- 프로그래머스
- Commpot
- poetry
- Git
- vscode
- WebSocket
- 프로젝트
- 백준
- 1주차
- 가상환경
- 정보처리기사실기
- Today
- Total
목록poetry (2)
개발일기
poetry에서 requirements.txt 파일로 종속성을 내보내기 poetry export --without-hashes --format=requirements.txt > requirements.txt 해당 명령어는 "poetry export"를 사용하여 "requirements.txt" 파일에 종속성을 내보내는 것을 의미한다. 여기서 "--without-hashes" 옵션은 요구사항 파일에서 패키지 해시를 제외하도록 지정하며, "--format=requirements.txt" 옵션은 내보내는 파일의 형식을 "requirements.txt"로 설정한다. 즉, 이 명령어는 Poetry 프로젝트에서 사용하는 종속성 정보를 가져와서 "requirements.txt" 파일로 내보내는데, 해당 파일에서 패키..
https://python-poetry.org/docs/ Introduction | Documentation | Poetry - Python dependency management and packaging made easy If you installed using the deprecated get-poetry.py script, you should remove the path it uses manually, e.g. rm -rf "${POETRY_HOME:-~/.poetry}" Also remove ~/.poetry/bin from your $PATH in your shell configuration, if it is present. python-poetry.org 공식문서를 따라하는 것이 제일 정확하다..