首页 > 解决方案 > 尝试安装时“获取构建轮子的要求...错误”--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)

我怎样才能解决这个问题?

标签: pythonpippython-wheel

解决方案


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

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 .后,自动获取构建要求,一切正常。


推荐阅读