If I were using a virtualenv, I would activate my project's virtual environment then install the package I am developing in develop mode. Something like the following:
workon superbad
pip install -e fnawesome
This allows my package fnawesome
to be accessible with any code updates in my superbad
virtual environment. If I switch to any other environment, including the default environment, superbad
id not accessible.
How are people doing similar setups using conda?