Spyder IDE Console History

How to view print history in console in spyder IDE? If more data is printed, it doesn't show up on the console and doesn't even show the scrollbar.

+3


source to share


2 answers


The default configuration is 10,000 line buffering. If you need a larger buffer, you will need to change the settings in Preferences

Console

Display

Source Code

Buffer:

to increase the number of lines.



iBbvJ7z.png

+6


source


This update is for Spyder 3.1.4:

  • Instruments
  • Preferences (shortcut: Ctrl + Alt + Shift + P)
  • IPython Console (in the left menu of the settings utility)
  • Source
    1. Buffer: 500 Lines (in the right menu under the "Display" tab)


Increase the buffer to see more lines in the IPython console. Then close and restart Spyder.

+2


source







All Articles