I tried to install my project as a package so I can import functions from my src folder. In my conda env in the root folder of my project in the terminal I tried pip install -e ./
and (after uninstalling my first attempt) python -m pip install -e ./
, both of which resulted in
Installing collected packages: gliders
Running setup.py develop for gliders
Successfully installed gliders
and the package showing up when I did conda list
as
Name Version Build Channel
gliders 0.1.0 dev_0 <develop>
However when I run code with import gliders
in my Jupyter notebook, I get the following error: ModuleNotFoundError: No module named 'gliders'
I am using Python 3.6.13.
How can I fix this error?