-
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 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @adam2392, You may be better off using |
Beta Was this translation helpful? Give feedback.
Hi @adam2392,
spin
does 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 thespin
interface (includingspin ipython
, but there's nospin jupyter
).You may be better off using
pip install -e . --no-build-isolation
for everything if you want to use Jupyter. And instead ofspin test
, usepytest
directly.