如何安装 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