requirements.txt -> 연구 및 프로젝트 수행 시 필요한 모든 라이브러리 및 버전 list이고, 환경 세팅을 수월하게 할 수 있음
필요한 모든 패키지 및 버전 list 생성
$ pip freeze > requirements.txt
필요한 모든 패키지 설치
$ pip install -r requirements.txt
# requirements.txt가 저장되어있는 경로에서 아래 명령어 실행
$ conda create -n [가상환경명] python=[파이썬 버전] && conda activate [가상환경명] && pip install -r requirements.txt