Issue
I have the following 'magic' command for Jupyter iPython notebook:
%config IPCompleter.greedy=True
However I don't know where I could put in in a configuration file to have it by default on each newly opened notebook.
Should it go .jupyter/jupyter_notebook_config.py
?
Solution
This is IPython configuration, so it should go in ~/.ipython/profile_default/ipython_config.py
.
Jupyter configuration only affects frontend applications providing UI (e.g. notebook server, qtconsole, etc.), not the kernels (IPython, IJulia, etc.) which may have their own configuration mechanism.
Answered By - minrk
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.