By design, in the Jupyter architecture it's not possible to tell what frontend (Notebook or Qtconsole) sent something to run to a kernel. So it's not possible for tqdm to reliably send back to the frontend only the html or terminal representations. About this, it's also important to un...
A piece of information which may be relevant is that, when the progress bar gets stuck just at the end of a repeat, I can leave it for as long as I like and nothing will happen, but when I exit the script with ctrl+C, the progress bar updates just after the KeyboardInterrupt. For...
Related Question how to add progress bar in python using tqdm making multiple progress bar in python by using tqdm Python: tqdm not showing progress bar Python: tqdm progress bar stuck at 0% Python enumerate() tqdm progress-bar when reading a file? Showing tqdm progress bar while using ...
bar1: finished, pos=0 (since it is finished, it does not occupy a position) bar2: stuck... (real position == 0, since `position` of bar2 is 1, the update will start at next line) bar2: not finish, pos=1 bar3: not finish, pos=2 bar4: not finish, pos=3 Code to verify...