메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Python whl 설치

데브카페

1. Python whl 파일 설치 방법

1) 설치하고자 하는 whl 파일을 다운로드 받는다.

  https://pypi.org/

2) python -m pip install whl파일명


2: Using pip download (Recommended)

This automatically grabs all required dependencies for you. On the internet-connected machine:

pip download PyQt5 -d ./pyqt5_offline

This downloads the PyQt5 wheel and all its dependencies into the pyqt5_offline folder. On the offline machine: Transfer the folder and run:

pip install --no-index --find-links=./pyqt5_offline PyQt5

Comments