I am running:
pip install --editable .
and get the following:
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.
I made sure I have the Wheel package:
Requirement already satisfied: wheel in /usr/local/lib/python3.6/dist-packages (0.35.1)
How can I fix this?
pip install -e
– Flatting