车轮文件安装


100

如何安装.whl文件?我有Wheel库,但是我不知道如何使用它来安装那些文件。我有.whl文件,但我不知道如何运行它。请帮忙。

Answers:


141

通常,您会使用pip安装车轮之类的工具。如果这是针对PyPI上托管的项目的,则将其留给工具以发现并下载文件。

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

pip install wheel

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

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项目文档


pip install wheel命令 上遇到错误pip._vendor.distlib.DistlibException: Unable to locate finder for 'pip._vendor.distlib'
Sandipan Guha

@SandipanGuha:也许您正在使用Python 3.6?见github.com/pypa/pip/issues/3964
Martijn Pieters

@MartijnPieters如何python -m wheel install wheel_file.whl针对单个用户,可能带有--user标志?
StrikeR '16

@StrikeR:该wheel模块在该USER_SITE位置没有设施可安装。使用pip了点。
马丁·彼得

18

如果您的电脑上已经有一个wheel文件(.whl),则只需执行以下代码:

cd ../user
pip install file.whl

如果要从Web下载文件然后安装,请在命令行中执行以下操作:

pip install package_name

或者,如果您具有网址:

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

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

注意:在使用Python 2时,我必须键入pip2而不是pip。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.