When I load ipython with any one of:
ipython qtconsole
ipython qtconsole --pylab
ipython qtconsole --pylab inline
The output buffer only holds the last 500 lines. To see this run:
for x in range(0, 501):
...: print x
Is there a configuration option for this? I've tried adjusting --cache-size but this does not seem to make a difference.
Quickly:
ipython qtconsole --IPythonWidget.buffer_size=1000
Or you can set it permanently by adding:
in your ipython config file.
For discovering this sort of thing, a helpful trick is:
For instance, you already had 'buffer', so:
If IPython used a different name than you expect and that first search turned up nothing, then you could use
500
, since you knew what the value was that you wanted to change, which would also find the relevant config.