온라인 환경에서 패키지 다운로드
pip download 명령을 이용해서 아래와 같이 원하는 패키지를 다운로드 한다.
(폐쇄망 환경에서 외부로 443 통신이 불가한 경우 --trusted-host 를 추가 하면 된다.)
pip3 download -d ./package-requests/ requests --trusted-host pypi.org --trusted-host files.pythonhosted.org
오프라인 환경에서 패키지 설치
커맨드 라인 환경
pip3 install --no-index --find-links=./package-requests/ requests
IDE 환경
파이참 (PyCharm)
# pip.ini (Windows)
[global]
trusted-host = pypi.org
files.pythonhosted.org
# pip.conf (Unix/Linux)
[global]
trusted-host = pypi.org
files.pythonhosted.org
'프로그래밍 > Python' 카테고리의 다른 글
Python 설치 (1) | 2024.09.20 |
---|---|
Python 자료형 (0) | 2024.08.25 |
Python 기본 입/출력 (0) | 2024.08.24 |
오프라인 환경에서 PIP 설치하기 (0) | 2024.07.13 |