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
By the way, python setup.py develop works also fine, seems that pip install -e . does not trigger the compilation of C++ sources. So this seems not to be a problem with scikit-build. Does anybody know a workaround to make pip install -e . work?
The text was updated successfully, but these errors were encountered:
https://github.com/scikit-build/scikit-build-sample-projects/tree/master/projects/hello-pybind11
I tried to start from this sample project.
pip install .
works fine,However,
pip install -e .
failed.ModuleNotFoundError: No module named 'hello._hello'
Here's the info about my system and evironment.
System
Python env
By the way,
python setup.py develop
works also fine, seems thatpip install -e .
does not trigger the compilation of C++ sources. So this seems not to be a problem with scikit-build. Does anybody know a workaround to makepip install -e .
work?The text was updated successfully, but these errors were encountered: