파이썬 패키지 .Whl 파일을 설치하는 방법
새로운 Python 패키지 또는 라이브러리를 설치하는 가장 보편적 인 방법은 Python 자습서 설치 섹션 에 소개 된대로 pip
또는 easy_install
을 사용하는 것입니다.
그러나 때때로 당신은 제한된 인터넷 접속과 같은 몇몇 제한 때문에 이 도구들을 사용할 수 없었다. 여기서 우리는 당신에게 .whl 파일이 있는 새로운 Python 패키지를 설치하는 방법을 보여줄 것이다.
Python 휠 파일 형식
Python wheel 파일 또는 약어 .whl 파일은 Python 내장형 패키지로 특별히 포맷된 zip 아카이브다. 설치 파일을 모두 포함하고 있으며 파일을 풀기만 하면 설치할 수 있다.
Python .whl (wheel) 파일을 설치하는 방법
-
pip
가 이미 설치되어 있는지 확인pip
또는pip.exe
가 인식되지 않으면pip
설치 안내서로 설치하십시오. 또는 Python 스크립트 디렉토리에 있는지 여부를 확인할 수 있지만 스크립트 경로가 시스템 변수에 없습니다. 그런 다음 간단히 시스템 변수PATH
에 Python 스크립트 경로를 추가 할 수 있습니다.set PATH=C:\Python\Scripts;%PATH%
여기서 C:\Python \ Scripts 는 자신의 Python 설치 디렉토리로 업데이트해야합니다.
-
.whl
파일 다운로드이 신뢰할 수있는 UCI 웹 사이트 https://www.cgohlke.com/#jpype 에서 Python 확장 패키지 용 비공식 Windows 바이너리를 다운로드 할 수 있습니다.
-
.whl
파일 설치예를 들어,
pycairo-1.16.3-cp27-cp27m-win32.whl
을C:\Downloads\
폴더로 다운로드 한 경우.whl
패키지 파일을 설치하려면 아래 명령을 사용하십시오.pip install C:\Downloads\pycairo-1.16.3-cp27-cp27m-win32.whl
끝났다. 행운을 빕니다!
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn Facebook