How to fix tqdm progress_apply for pandas in Jupyter?

后端 未结 5 1981
别那么骄傲
别那么骄傲 2020-12-31 07:19

Don\'t really understand is it a mistake or just my local problem, still have some issues with using tqdm progress bars with progress_apply in Jupyter.

5条回答
  •  天命终不由人
    2020-12-31 07:45

    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(...
    

提交回复
热议问题