tqdm / tqdm.cpp

C++ port of tqdm
Other
312 stars 28 forks source link

Progress bar does not show #49

Open amallia opened 6 years ago

amallia commented 6 years ago

I am using the following code to generate a progress bar which I will update using the update function.

    tqdm::Params params;
    params.desc="recursive_bisection";
    params.leave = true;
    params.dynamic_ncols = true;
    auto progress = tqdm::tqdm(forward_index.begin(), forward_index.size(), params);

Until I call the update function for the first time it will pass few minutes, until then the progress bar is not shown at all. I have tried to call update(0) but it does not work. Is there a better way to show the bar just after its initialization?

syedmohsinbukhari commented 4 years ago

any update on this?

jamesavery commented 2 years ago

Any update on this?