다른 명령
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