How to fix tqdm progress_apply for pandas in Jupyter?
Now you can just do:
from tqdm.notebook import tqdm
tqdm.pandas()
df.progress_apply(...)
My version of tqdm is 4.39.0
Answer from tqdm developer:
notebook support is still in a (late) beta stage. The API might change slightly when we release tqdm v5 but for now you probably need
from tqdm._tqdm_notebook import tqdm_notebook
tqdm_notebook.pandas(...