본문 바로가기

IT/Python

Python package environment settings

Python package environment settings

  • 설치되어있는 패키지 req.txt 에 저장
  • pip freeze > req.txt
  • req.txt에 지정된 패키지를 타겟환경에 설치
  • pip install -r req.txt
  • 패키지에 대한 의존성으로 설치불가 패키지는 수동설치 필요

'IT > Python' 카테고리의 다른 글

KakaoTalk Proxy Server  (0) 2021.01.14
Python Pyinstaller Control  (0) 2021.01.14
Get it from Python Parameter Jenkins  (0) 2021.01.14
Python File Searching  (0) 2021.01.14
Python Excel Control  (0) 2021.01.14