如何安装 Python .whl 文件

Jinku Hu 2022年12月21日 2018年3月6日
如何安装 Python .whl 文件

最常用的安装新 Python 包或库的方法是使用 pipeasy_install 来安装,我们在 Python 教程安装部分中介绍过。但有时由于网络访问限制等原因,我们无法使用这些工具,那我们我们将向你介绍如何使用 .whl 文件安装新的 Python 包/库。

  • 检查 pip 是否已经安装在系统里

    如果系统无法识别 pippip.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 之路顺利。

Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

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

相关文章 - Python Package