UserWarning: The dash_html_components package is deprecated. Please replace `import dash_html_components as html` with `from dash import html` import dash_html_components as html
时间: 2023-11-22 10:51:50 浏览: 451
该文件已经更新了 请查看最新代码
这个警告是因为 dash_html_components 包已经被废弃了,建议使用新的包结构。你需要将导入方式改为 `from dash import html`,然后使用 `html` 代替原来的 `dash_html_components.html`。例如:
```python
# 旧的导入方式
import dash_html_components as html
# 新的导入方式
from dash import html
# 使用方式不变,将原来的 html.*** 改为 html.***
app.layout = html.Div([...])
```
这样就可以避免这个警告了。
阅读全文