|
Hi, I'm building a project locally that consists of Python and Cython. Everything works fine when running things like: These are all installed in my |
Answered by
rgommers
Jun 12, 2023
Replies: 1 comment 2 replies
|
Hi @adam2392, You may be better off using |
2 replies
Answer selected by
adam2392
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @adam2392,
spindoes a local install for developing the project itself within the source tree of the repo (defaulting tobuild-install). That's not site-packages, so it only works when you run things via thespininterface (includingspin ipython, but there's nospin jupyter).You may be better off using
pip install -e . --no-build-isolationfor everything if you want to use Jupyter. And instead ofspin test, usepytestdirectly.