Problems with fastprogress starting in lesson

The 09c workbook import of “from fastprogress import master_bar, progress_bar” produces the following error:
ImportError: cannot import name ‘master_bar’ from ‘fastprogress’
I found that the fix is to modify the line to:
"from fastprogress.fastprogress import master_bar, progress_bar:
however when the progress bar is actually implemented later in the workbook with “learn.fit(2)” an error is thrown:
"TypeError: init() got an unexpected keyword argument ‘auto_update’ "
I am not able to find a solution.
Unfortunately this problem infects all the subsequent notebooks.
Any ideas for a solution?
Thanks!

I think if you remove the “auto_udpate=False” in code then you can run the notebook.

try to pull the latest update to the git repo. git pull.

1 Like

That worked. Thanks so much!