You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to use pip3 install -e . with these projects? When I try I get an error:
Defaulting to user installation because normal site-packages is not writeable
ERROR: File "setup.py" or "setup.cfg" not found. Directory cannot be installed in editable mode: /home/russ/repos/xxxxxx
(A "pyproject.toml" file was found, but editable mode currently requires a setuptools-based build.)
What's the best way to go about getting this to work?
Are you looking for one of your dependencies to be editable or for your own package to be editable when installed by other projects? Are you installing from PyPI, Git, or as a local path dependency?
When I want to work on two projects in tandem, I typically use this syntax in pyproject.toml:
Hi,
Is it possible to use
pip3 install -e .
with these projects? When I try I get an error:What's the best way to go about getting this to work?
Edit: should have researched a bit more: python-poetry/poetry#1135 (comment)
and more importantly: https://www.python.org/dev/peps/pep-0660/
Cheers.
The text was updated successfully, but these errors were encountered: