I believe that the next work is in version 0.11 and higher. To check the version:
$ ipython --version
It might be worth adding this information to your question.
Decision:
You need to find the ipython_notebook_config.py file. Depending on the installation process, it should be somewhere like
.config/ipython/profile_default/ipython_notebook_config.py
where .config is in your home directory.
Once you find this file, find the following lines
Uncomment this line c.InlineBack... and define your default figsize in the second dictionary entry.
Note that this can be done in a python script (and therefore interactively in IPython) using
pylab.rcParams['figure.figsize'] = (10.0, 8.0)
Greg Jun 21 '13 at 9:01 2013-06-21 09:01
source share