# pip으로 설치된 모든 패키지 확인
$ pip list
Package Version
------------- ---------
-ip 20.2.2
APScheduler 2.1.2
certifi 2020.6.20
chardet 3.0.4
click 7.1.2
Flask 1.1.4
...
# requirements.txt 파일 생성
$ pip freeze > requirements.txt
APScheduler==2.1.2
certifi==2020.6.20
chardet==3.0.4
click==7.1.2
Flask==1.1.4
...
# 모든 패키지 한번에 설치
$ pip install -r requirements.txt
'Development > Python' 카테고리의 다른 글
[Python] pip3 install paho-mqtt==1.6.1 (0) | 2022.08.25 |
---|---|
[python] request body 출력 (0) | 2022.04.04 |
[Python]csv 엑셀 변환 (0) | 2020.11.19 |
[Python]잡동사니 (0) | 2020.09.25 |
APScheduler(Advance Python Scheduler) ImportError: No module named scheduler (0) | 2020.09.14 |