文章目录
今天在mac上跑gym的’Acrobot-v1’环境的时候,报错了,如下所示:
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
,但是M1芯片根本不好使
解决办法,直接用conda装:
conda install -c conda-forge ffmpeg
我这里装完立马好使。