less than 1 minute read

使用 github 开源 YOLOv5,安装完成,跑测试,出现以下错误

ImportError: IProgress not found. Please update jupyter and ipywidgets. 
See https://ipywidgets.readthedocs.io/en/stable/user_install.html

出错原因

安装 Jupyter Notebook 的时候没有安装 ipywidgets 包,手动使用pip安装即可,安装完成之后重启Notebook。

解决

pip install ipywidgets

根本原因是 tqdm(用来生成进度条) 依赖 ipywidgets 包