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
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)
pip install "notebook<7"
I had to install the JSAnimation package
pip install JSAnimation
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.
The text was updated successfully, but these errors were encountered:
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.
plt.style.use('seaborn-v0_8-talk')
instead of justseaborn-talk
Kitchen_sink_proplem.ipynb
I had to change all instances ofHTML(anim.to_jshtml())
to justanim
, which seems to have the desired effect. The animations appear to run fine like that.The text was updated successfully, but these errors were encountered: