python
RuntimeError: Requested MovieWriter (ffmpeg) not available
/root/miniconda3/lib/python3.8/site-packages/matplotlib/animation.py:884: UserWarning: Animation was deleted without rendering anything. This is most likely not intended. To prevent deletion, assign the Animation to a variable, e.g. `anim`, that exists until you output the Animation using `plt.show()` or `anim.save()`.
这个错误通常发生在使用matplotlib库进行动画制作时,尝试将动画保存为视频文件,但是没有安装必要的ffmpeg
软件。ffmpeg
是一个可以用来处理视频、音频和图片的软件,是许多编码和视频处理任务的首选工具。
解决这个问题,你需要安装ffmpeg
。如果你使用的是miniconda
,可以先更新conda
仓库,然后使用conda
来安装ffmpeg
:
python
conda update conda
conda install -c conda-forge ffmpeg