Description
When using from tqdm.notebook import tqdm to display a progress bar during the execution of a for loop, the progress bar is not rendered in presentation mode.
Reproduce
- Create a cell that runs a
for loop with tqdm, e.g., for i in tqdm(range(10)): time.sleep(1)
- Run notebook cell in jupyter lab, you should see a progress bar that updates with the progress of the loop execution.
- Run cell in presentation mode, the progress bar is not rendered.