diff --git a/matplotlib/animation_and_slider/README.md b/matplotlib/animation_and_slider/README.md index 221b9ff..2513ed7 100644 --- a/matplotlib/animation_and_slider/README.md +++ b/matplotlib/animation_and_slider/README.md @@ -149,3 +149,14 @@ animation = matplotlib.animation.FuncAnimation( plt.show() ``` + +## Interactive Python session + +There are several options if you don't run it from VS Code interactively. One options is this: + +```python +# %% +%matplotlib widget +``` + +