I'm attempting to run a very simple tqdm script:
from tqdm.notebook import tqdm
for i in tqdm(range(10)):
time.sleep(1)
but am met with:
IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
My ipywidgets is v8.0.4 and jupyter v1.0.0... does tqdm not work anymore with VS Code Jupyter Notebook?
pip install
from inside a notebook, you'll have a better experience if you don't use the exclamation point with it, and use the modern magic command added to insure the installation occurs in the environment being used by the kernel underlying the active notebook, see here for more about the modern magic commands added to overcome exclamation point shortcomings. You should be suggesting others use that in current Jupyter as well. ... – Wessel