On 23 August 2016 at 14:46, Ryan Krauss <[email protected]> wrote: > I have put these lines in ~/.jupyter/jupyter_notebook_config.py but it > doesn't work. > > c = get_config() > # ... Any other configurables you want to set > c.InteractiveShellApp.matplotlib = "inline" >
Setting matplotlib to load on startup is a Python specific thing, so it's configured as part of IPython, not Jupyter. jupyter_notebook_config.py is for configuring the notebook server, and it doesn't directly affect kernels started by Jupyter. You could create a second kernelspec for IPython ( http://ipython.readthedocs.io/en/stable/install/kernel_install.html ), and manually add to the command line args it uses to set the matplotlib option. -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/CAOvn4qgyf1B8MLbqBwX9DFMSLb_gyHkeCQV6DSkt_TNygej30Q%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
