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?