반응형
1. 의존성 라이브러리 자동 requirement.txt 생성
다른 환경에서 실행하기 위해, 종속성이 있는 라이브러리는 모두 설치해야하는데, 이를 쉽게 만들어주는 라이브러리이다.
pip install pipreqs
사용법 : pipreqs ./func
결과 requirement.txt
xlutils==2.0.0
openpyxl==2.3.2
xlrd==1.0.0
numpy==1.11.3+mkl
한방에 설치 방법
pip install -r requirements.txt
반응형
'Programming > Python' 카테고리의 다른 글
matplotlib 한글 문제 (1) | 2017.06.19 |
---|---|
matplotlib matshow colorbar discrete setting (0) | 2017.05.31 |
라즈베리파이 picamera h264 to mp4 변환 (0) | 2017.05.03 |
python string to function call (0) | 2017.04.26 |
flask log disable (0) | 2017.04.19 |