Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ffmpeg command not found but pip list shows ffmpeg

Tags:

linux

pip

ffmpeg

I have been trying to install ffmpeg using the command pip install ffmpeg and I am doing this in a server where we dont have sudo permissions. On writing ffmpeg I get ffmpeg: command not found. Then I checked with pip list and it showed ffmpeg. Please help me.

like image 311
your_doomsday07 Avatar asked Nov 16 '25 02:11

your_doomsday07


1 Answers

pip install ffmpeg installs a Python package that doesn't have any executable scripts; it's for calling functions from Python code.

If you want to install ffmpeg program you need to run — what do you use, Ubuntu? — sudo apt install ffmpeg

The Python package requires the program anyway.

like image 184
phd Avatar answered Nov 18 '25 15:11

phd