You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using pqdm in a jupyterlab notebook I receive the following message instead of the progress bar: Error displaying widget: model not found. For the rest the code seems to be executing like normal.
What I Did
I am also able to replicate this exact problem when running the example:
from pqdm.processes import pqdm
# If you want threads instead:
# from pqdm.threads import pqdm
args = [1, 2, 3, 4, 5]
# args = range(1,6) would also work
def square(a):
return a*a
result = pqdm(args, square, n_jobs=2)
The text was updated successfully, but these errors were encountered:
Description
When using pqdm in a jupyterlab notebook I receive the following message instead of the progress bar:
Error displaying widget: model not found
. For the rest the code seems to be executing like normal.What I Did
I am also able to replicate this exact problem when running the example:
The text was updated successfully, but these errors were encountered: