Python
파이썬 패키지 다운로드(오프라인 환경)
오프라인 환경에서 파이썬 패키지를 다운 받아 설치 해야 할 경우 #파이썬 패키지 오프라인 다운로드및 설치법 #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
2020. 8. 5. 09:03