如何安裝 Python .whl 檔案
最常用的安裝新 Python 包或庫的方法是使用 pip
或 easy_install
來安裝,我們在 Python 教程安裝部分中介紹過。但有時由於網路訪問限制等原因,我們無法使用這些工具,那我們我們將向你介紹如何使用 .whl
檔案安裝新的 Python 包/庫。
-
檢查
pip
是否已經安裝在系統裡如果系統無法識別
pip
或pip.exe
,請使用pip
安裝教程進行安裝。或者你可以檢查它是否在 Python 指令碼目錄中,但指令碼路徑不在系統變數中。然後,你只需將 Python 指令碼路徑新增到系統環境PATH
變數即可。set PATH=C:\Python\Scripts;%PATH%
通過上面的命令,
C:\Python\Scripts
就會被增加到系統環境變數裡。 -
下載
.whl
檔案你可以從這個值得信賴的 UCI 網站下載 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
搞定!祝 Python 之路順利。
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