我遇到的问题是类似于以下示例的代码:https : //matplotlib.org/examples/animation/basic_example_writer.html
错误:
RuntimeError:没有MovieWriters可 发生在Writer = animation.writers['ffmpeg']上面的例子。
Writer = animation.writers['ffmpeg']
我正在使用Mac,已经使用brew安装了ffmpeg,甚至使用conda进行了安装,即使我没有为该特定代码使用anaconda。
我肯定它已安装-我已在终端中使用它来更改文件,但在程序中无法运行。
谢谢!
尝试指定ffpmeg手动编程的路径,例如
ffpmeg
import matplotlib.pyplot as plt plt.rcParams['animation.ffmpeg_path'] = '/usr/local/bin/ffmpeg'
您必须将这些代码行放在脚本的开头,然后使用动画Writer。
Writer