在 Google Colaboratory 中安装 imagemagick

Aya*_*was 8 imagemagick google-colaboratory

我正在尝试通过 imagemagick 包将动画保存为 gif。这就是我所做的

anim.save('animation.gif', writer='imagemagick', fps=10)

但我收到以下警告

MovieWriter imagemagick unavailable; trying to use <class 'matplotlib.animation.PillowWriter'> instead.
Run Code Online (Sandbox Code Playgroud)

由于 imagemagick 不是 python 包,我如何在 Google colab 中安装它?或者,是否有不同的包可以用来在 google colab 中将动画保存为 gif?

Kor*_*ich 14

您可以使用安装它 apt

!apt install imagemagick
Run Code Online (Sandbox Code Playgroud)