This is the code I'm running in jupyter notebook:
from tqdm.notebook import tqdm
for i in tqdm(range(0, 100000)):
continue
Instead of a progress bar, I'm getting the following message:
HBox(children=(FloatProgress(value=0.0, max=100000.0), HTML(value='')))
If I use from tqdm import tqdm
instead, it does work okay.