-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use progress bar in processes #31
Comments
isn't it just an importation issue ? I think there are 2 ways of importing tqdm progress bar |
oh I'm not really sure, I thought the problem was associated with |
Is this what you meant? from tqdm.notebook import trange, tqdm
from time import sleep
for i in trange(3, desc='1st loop'):
for j in tqdm(range(100), desc='2nd loop'):
sleep(0.01) from tqdm.notebook import trange
from tqdm.auto import tqdm
from time import sleep
for i in trange(3, desc='1st loop'):
for j in tqdm(range(100), desc='2nd loop'):
sleep(0.01) |
ok that's why there's an error in all the panels of all the apps. as we embed tqdm by design in alerts, there's a JS error. It's now on top of my priorities. |
As it was deactivated before on #30 , we should include it again once it would be possible.
The text was updated successfully, but these errors were encountered: