【发布时间】:2020-08-16 08:44:23
【问题描述】:
我正在跑步:
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)
我该如何解决这个问题?
【问题讨论】:
-
你可以试试
pip install -e -
请显示完整的错误日志。
-
我很乐意,我该怎么做?我正在使用谷歌 colab。
标签: python pip python-wheel