Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IPython deprecation warning when importing display

When I run:

from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))

I got

/var/folders/6g/6gqq4lhx4jbcl4_tbrsxj3xr0000gq/T/ipykernel_5625/333572366.py:1: 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

like image 628
ChaosPredictor Avatar asked Nov 04 '25 13:11

ChaosPredictor


1 Answers

replace

from IPython.core.display import display, HTML

with

from IPython.display import display, HTML

source here

like image 60
ChaosPredictor Avatar answered Nov 06 '25 02:11

ChaosPredictor



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!