Answers:
通常,您会使用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
项目文档。
python -m wheel install wheel_file.whl
针对单个用户,可能带有--user
标志?
wheel
模块在该USER_SITE
位置没有设施可安装。使用pip
了点。
pip install wheel
命令 上遇到错误pip._vendor.distlib.DistlibException: Unable to locate finder for 'pip._vendor.distlib'