Я пытаюсь использовать tqdm_notebook в своем коде Python, но я сталкиваюсь с этой ошибкой
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 после этого работал.
Решение изначально отсюда: https://github.com/tqdm/tqdm/issues/187
ах, мой плохой! Просто нужно было установить пакеты jupyter и ipywidgets!