tqdm printing to newline
Try with position=0
and leave=True
(Solution working in Google Colab to avoid printing to a newline)
from tqdm import tqdm
import time
def foo_():
time.sleep(0.3)
range_ = range(0, 10)
total = len(range_)
with tqdm(total=total, position=0, leave=True) as pbar:
for i in tqdm((foo_, range_ ), position=0, leave=True):
pbar.update()
tqdm_notebook is deprecated. You must use tq.notebook.tqdm instead.
import tqdm.notebook as tq
for i in tq.tqdm(...):
Furthermore, tqdm_notebook was really miserable in terms of performances. That's fully corrected with the new library.
from tqdm import tqdm_notebook
this command works in google colab.
I have realized that closing tqdm instances before using tqdm again fixes the problem of printing status bar in a new line on Jupyter Lab:
while len(tqdm._instances) > 0:
tqdm._instances.pop().close()
Or even better, thanks to Nirmal for the suggestion:
tqdm._instances.clear()