车轮文件安装
如何安装.whl文件? 我有轮库,但我不知道如何使用它来安装这些文件。 我有.whl文件,但我不知道如何运行它。 请帮忙。
您通常使用像pip
这样的工具来安装轮子。 如果这是PyPI托pipe的项目,请将其保留到工具中以发现并下载文件。
为了这个工作,你需要安装wheel
包:
pip install wheel
然后你可以告诉pip
安装项目(如果有的话,它会下载轮子),或者直接下载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
项目文档 。