오프라인 환경에서 파이썬 패키지를 다운 받아 설치 해야 할 경우
#파이썬 패키지 오프라인 다운로드및 설치법
#get installed package
pip freeze > requirements.txt
#Download package (offine backup)
pip download -r ./requirements.txt
#offline package install
pip install --no-index --find-links="./" -r .\requirements.txt
'Python' 카테고리의 다른 글
구글 텐서플로우 개발자 자격증 (TensorFlow Developer Certificate) (0) | 2020.10.12 |
---|---|
[python] DNS주소를 IP로 변경 (0) | 2020.08.13 |