lerobot icon indicating copy to clipboard operation
lerobot copied to clipboard

Fix ffmpeg install command

Open aliberts opened this issue 8 months ago • 2 comments

What this does

Fix ffmpeg install command

aliberts avatar Apr 08 '25 10:04 aliberts

Careful this might have broken my conda for some reason !

theo-michel avatar Apr 08 '25 12:04 theo-michel

Here's what i have noticed.

Running

conda install ffmpeg -c conda-forge -y

Before

pip install --no-binary=av -e .

Causes issue while building pyav form source. This won't be noticed if you have even 1 successful build of pyav on your system as miniconda will use the cached version of that build. To recreate this issue you can run

pip install --no-binary=av -e . --no-cached-dir --force-reinstall

Changing the order of these steps help avoid the issue, without any noticeable issue further down the process. Steps that work.

  1. Install Lerobot
  2. Install ffmpeg

shantanuparab-tr avatar Apr 08 '25 16:04 shantanuparab-tr

Superseded by #903

aliberts avatar Apr 09 '25 15:04 aliberts