【发布时间】:2021-09-01 00:13:02
【问题描述】:
我正在使用 jupyter notebook 并已安装
ipywidgets==7.4.2 widgetsnbextension pandas-profiling=='.0.0
我也跑了:
!jupyter nbextension enable --py widgetsnbextension
但是在运行时
from pandas_profiling import ProfileReport
profile = ProfileReport(df, title="Pandas Profiling Report", explorative=True)
profile.to_widgets()
我得到错误:
ImportError: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
知道为什么吗? 尝试了建议的解决方案。
【问题讨论】:
标签: pandas jupyter-notebook jupyter ipywidgets pandas-profiling