320x100
pip offline install 방법
폐쇠망에서 pip 로 설치를 해야 하는데 인터넷이 연결이 안된 환경이라면 우선 pip 로 다운을 하고 나서 설치를 하면 된다.
다운 하는 명령어는
pip download -d . 패키지이름
# pip3 download -d . python-jenkins
다운 된 python_jenkins-1.8.1-py3-none-any.whl 파일을 폐쇠망에 복사를 하고
# pip3 install --no-index --find-links=./ python-jenkins
위 명령어 입력하면
설치가 완료 된다.
320x100