I would like to print into the terminal window that runs IPython Notebook and not into the cell output. Printing into cell output consumes more memory and slows down my system when I issue a substantial number of print
calls. In essence, I would like this behaviour by design.
I have tried the following:
You have to redirect your output to the systems standard output device. This depends on your OS. On Mac that would be:
Type the above code in an IPython cell and evaluate it. Afterwards all output will show up in terminal.