You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way display is imported in IPython should be changed.
DeprecationWarning: Importing display from IPython.core.display is deprecated since IPython 7.14, please import from IPython display
from IPython.core.display import display, HTML, clear_output
DeprecationWarning: Importing clear_output from IPython.core.display is deprecated since IPython 7.14, please import from IPython display
from IPython.core.display import display, HTML, clear_output
from IPython.core.display import display, HTML, clear_output
should be
from IPython.display import display, HTML, clear_output
Using IPython 8.1.1 in Python 3.9.11
The text was updated successfully, but these errors were encountered:
The way display is imported in IPython should be changed.
should be
Using IPython 8.1.1 in Python 3.9.11
The text was updated successfully, but these errors were encountered: