7

Anaconda 在 spyder 中运行 OpenAi gym 的几乎所有代码(例如此代码:https ://gym.openai.com/evaluations/eval_y5dnhk0ZSMqlqJKBz5vJQw )我遇到以下错误消息:

DependencyNotInstalled: Found neither the ffmpeg nor avconv executables. On OS X, you can install ffmpeg via 'brew install ffmpeg'. On most Ubuntu variants, 'sudo apt-get install ffmpeg' should do it. On Ubuntu 14.04, however, you'll need to install avconv with 'sudo apt-get install libav-tools'.

但是,当我输入brew install ffmpeg终端时,我得到Warning: ffmpeg-3.2 already installed并且没有任何反应。

有关如何解决此错误的任何想法?

4

2 回答 2

17

你需要安装一个可以被 Anaconda 识别的 ffmpeg 的副本。请在终端中运行此命令以执行此操作

conda install -c conda-forge ffmpeg
于 2016-11-10T16:56:28.737 回答
1

只需下载并安装ffmpeg,然后添加到路径。重新启动 Jupyter 笔记本服务器后,它对我有用。

在此处查看完整说明:http: //blog.gregzaal.com/how-to-install-ffmpeg-on-windows/

于 2019-09-29T16:46:44.087 回答