You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Context: I have written a custom config manager but it is not working... looking for the issue, I just tried to setup the env path directly in the current ConfigManager with no luck:
and I still can not load the nbconfig from that conda env... ideas???
Even more, if I try the option the option --ConfigManager.config_dir=path/to/env/etc/jupyter/nbconfig when I launch the notebook, it keeps loading nbconfig from the ./jupyter user space...
What other jupyter_config_dir-related things am I missing? Or it could be some problem upstream this? maybe traitlets?
pinging @takluyver@minrk who are probably interested, also @jdfreder who chat a little bit with me about this, although everyone else in invited 😉
The text was updated successfully, but these errors were encountered:
yes @ellisonbg, I will comment in the issue soon...
This is just me playing with alternatives and I think I found and issue/bug because it is not working if I make the changes I suggested above... but I can not figure out why not yet 😉
The notebook app specifies that frontend config is always in the Juptyer config dir, so it's not really true that ConfigManager.config_dir is configurable, since it's not allowed to be set from config.
OK, so removing that line will fallback in the default at ConfigManager, making that config option to work... sound like a reasonable request for a PR, so here it is: #882 😉
Context: I have written a custom config manager but it is not working... looking for the issue, I just tried to setup the env path directly in the current ConfigManager with no luck:
If I change https://github.com/jupyter/notebook/blob/master/notebook/services/config/manager.py#L17
from
return os.path.join(jupyter_config_dir(), 'nbconfig')
to
return os.path.join(ENV_CONFIG_PATH[0], 'nbconfig')
and I still can not load the nbconfig from that conda env... ideas???
Even more, if I try the option the option
--ConfigManager.config_dir=path/to/env/etc/jupyter/nbconfig
when I launch the notebook, it keeps loading nbconfig from the./jupyter
user space...What other
jupyter_config_dir
-related things am I missing? Or it could be some problem upstream this? maybetraitlets
?pinging @takluyver @minrk who are probably interested, also @jdfreder who chat a little bit with me about this, although everyone else in invited 😉
The text was updated successfully, but these errors were encountered: