wheel文件安装

Wheel file installation

如何安装 .whl 文件?

我有 wheel 库,但我不知道如何使用它来安装那些文件。我有 .whl 文件,但我不知道如何 运行 它。

您通常使用 pip 之类的工具来安装轮子。如果这是托管在 PyPI 上的项目,请留给工具来发现和下载文件。

为此,您需要安装 wheel 软件包:

pip install wheel

然后您可以告诉 pip 安装项目(如果可用的话它会下载 wheel),或者直接下载 wheel 文件:

pip install project_name  # discover, download and install
pip install wheel_file.whl  # directly install the wheel

wheel 模块,一旦安装,也可以从命令行运行,您可以使用它来安装已经下载的轮子:

python -m wheel install wheel_file.whl

另见 wheel project documentation

如果您的 PC 上已有 wheel 文件 (.whl),则只需使用以下代码:

cd ../user
pip install file.whl

如果您想从网上下载文件,然后安装它,请在命令行中执行以下命令:

pip install package_name

或者,如果您有 URL:

pip install http//websiteurl.com/filename.whl

这肯定会安装所需的文件。

注意:在使用 Python 2.

时,我不得不输入 pip2 而不是 pip

您可以按照以下命令在本地系统使用 wheel 文件进行安装:

pip install /users/arpansaini/Downloads/h5py-3.0.0-cp39-cp39-macosx_10_9_x86_64.whl