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)を使用しています
これは私のために働いた。
conda install -c conda-forge ipywidgets
jupyter nbextension enable --py widgetsnbextension
その後、jupyter Notebookを再起動しました。
元々ここから解決策: https://github.com/tqdm/tqdm/issues/187
ああ私の悪い!パッケージjupyterおよびipywidgetsをインストールする必要がありました!