Skip to content
Advertisement

raise NeedDownloadError(‘Need ffmpeg exe. ‘ NeedDownloadError: Need ffmpeg exe)

I’m trying to execute a call to an unofficial Instagram API python library, after several errors for dependencies needed I fixed, I’m stuck at this one.

JavaScript

Advertisement

Answer

This package relies on the ffmpeg executable to be in the PATH.

So just download it, install it somewhere, and add installation directory to PATH. make sure it can be accessed by typing:

JavaScript

from the command line.

Advertisement