ipython
ipython copied to clipboard
Console huge text descriptions of `FigureWidget`
Problem: I use Pycharm and get in console huge text descriptions of FigureWidget . Plots autoopen in browser OK.
How to fix:
In /lib/python3.8/site-packages/IPython/core/display.py I find
if not InteractiveShell.initialized():
# Directly print objects.
print(*objs)
return
If comment #print(*objs) console is OK, and plots OK.
Question: Is there any way to do it without commenting and changing ipython code?