You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Description
When using
from tqdm.notebook import tqdm
to display a progress bar during the execution of afor
loop, the progress bar is not rendered in presentation mode.Reproduce
for
loop withtqdm
, e.g.,for i in tqdm(range(10)): time.sleep(1)
The text was updated successfully, but these errors were encountered: