Hi,
Thanks for making this wonderful resource available. I had a few issues with installing and running the notebooks due to changes in recent versions of the dependencies. I finally got everything working successfully after making a few tweaks to the installation process.
- Recent versions of jupyter do not seem to be compatible with the extensions you are using. What worked for me is to pin the notebook package to version 6 (obviously it is best to do this in an isolated virtual environment)
- I had to install the JSAnimation package
- In some notebooks I had to change the plot style line to
plt.style.use('seaborn-v0_8-talk') instead of just seaborn-talk
- In
Kitchen_sink_proplem.ipynb I had to change all instances of HTML(anim.to_jshtml()) to just anim, which seems to have the desired effect. The animations appear to run fine like that.