After seeing this post on how to set the start-up folder for Jupyter Notebooks, I looked for how to do so for specific conda environments and haven't found an answer.
Is there a way to open up a Jupyter notebook in a location that is different depending on which conda environment within which you're activating it? I'm looking for a solution like the one above, where I could change c.NotebookApp.notebook_dir = '/the/path/to/home/folder/'
, but in some environment-specific config file.
I guess an alternative would be to set some macro to activate the environment, cd
to the desired folder location for this environment, then run jupyter notebook
from that location.