I'm trying to make an animated gif in Python. I've found lots of resources; it seems like the suggested method is to use the matplotlib.animation
package. This method requires ImageMagick to be installed and configured.
I don't necessarily have a problem with this, but I'm teaching a class and I would like to know if there is a "built-in" way to create gifs. By built-in I mean not using any external software or non-standard modules (and available in Python 2 and 3). I'm willing to sacrifice creation speed and quality of the animation. Something akin to Matlab's imwrite would be ideal. Is there a way to do this?