尝试安装--editable时出现“正在获取构建车轮的要求...错误”

问题描述

我正在跑步:

pip install --editable .

并获得以下信息:

Obtaining file:///content/nlp_tokenization_project
  Installing build dependencies ... done
  Getting requirements to build wheel ... error
ERROR: Command errored out with exit status 1: /usr/bin/python3 /usr/local/lib/python3.6/dist-packages/pip/_vendor/pep517/_in_process.py get_requires_for_build_wheel /tmp/tmpkhbslig1 Check the logs for full command output.

我确定我有Wheel包裹:

Requirement already satisfied: wheel in /usr/local/lib/python3.6/dist-packages (0.35.1)

我该如何解决?

解决方法

当我尝试将本地软件包安装到项目的虚拟环境中时,我遇到了同样的问题:

ERROR: Command errored out with exit status 1: 
.venv/bin/python .venv/share/python-wheels/pep517-0.7.0-py2.py3-none-any.whl
/pep517/_in_process.py get_requires_for_build_wheel /tmp/tmp25qfke7j 

解决方案是简单地删除有问题的pep517轮子:

rm .venv/share/python-wheels/pep517-0.7.0-py2.py3-none-any.whl

再次运行pip install -e .后,将自动获得构建要求,并且一切正常。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...