web-dev-qa-db-ja.com

JupyterノートブックのTqdm 4.28.1「IntProgressが見つかりません。jupyterとipywidgetsを更新してください。」

Pythonコードでtqdm_notebookを使用しようとしていますが、このエラーが発生しています

import tqdm

for i in tqdm.tqdm_notebook(range(2, int(total_number)//20):i

エラー:

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

Python 3.7.1およびtqdmバージョン(4.28.1)を使用しています

8
user3759710

これは私のために働いた。

conda install -c conda-forge ipywidgets
jupyter nbextension enable --py widgetsnbextension

その後、jupyter Notebookを再起動しました。

元々ここから解決策: https://github.com/tqdm/tqdm/issues/187

12
yueyanw

ああ私の悪い!パッケージjupyterおよびipywidgetsをインストールする必要がありました!

1
user3759710