I love Jupyter's Notebook, however, it prints many, many updates to the terminal it was started from. For e.g., every time a file is saved manually or automatically, a line is printed. It makes the terminal virtually useless.
How do I stop it?
I love Jupyter's Notebook, however, it prints many, many updates to the terminal it was started from. For e.g., every time a file is saved manually or automatically, a line is printed. It makes the terminal virtually useless.
How do I stop it?
You Should try this:
import warnings warnings.filterwarnings('ignore')
Add following on top of your code,
This should make you get rid of normal warnings.