Programming Language

Python pip 패키지 리스트 파일 저장 및 설치

kogun82 2021. 6. 15. 09:44

1). pip 설치된 패키지 목록 저장

pip freeze > requirements.txt


2). 설치 목록으로 부터 pip 패키지 설치

pip install -r requirements.txt