Can't get a consistent path to setup script from installation directory #3755
-
I am trying to install a cpp and python mixed project with editable mode. I am using : setup.py is https://github.com/quiver-team/torch-quiver/blob/main/setup.py My env:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
That is a difficult one. It seems that you are using legacy editable installs (that depend on the setuptools/setuptools/command/develop.py Line 88 in 08d3297 It might be a wild guess, but have you tried to remove the |
Beta Was this translation helpful? Give feedback.
That is a difficult one. It seems that you are using legacy editable installs (that depend on the
develop
command) and that the error is coming from this function:setuptools/setuptools/command/develop.py
Line 88 in 08d3297
It might be a wild guess, but have you tried to remove the
./
chars from the beginning of your package dir configuration?