Replies: 3 comments 3 replies
|
Not straightforward given the complexity of the package (C/C++ extensions, RXD + Cython, ...). |
|
Editable installs are now supported by https://www.python.org/dev/peps/pep-0660/, so |
|
It's been a long time since the last reply to this discussion, so I would like to chime in a bit with recent progress. Since merging #3350, NEURON switched to the PEP 517-compliant pip install -e . --no-build-isolation --config-settings=build-dir=[dir]All of the build files will then be placed in |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Context
I'd like to have NEURON pip installed coupled to my git repository using editable installs:
pip install -e ..Overview of the issue
When I run
pip install -e .the following error is thrown while I have Cython and numpy:FWIW
pip install .has the same issue.Expected result/behavior
An editable install
NEURON setup
pip install -e .All reactions