Skip to content

Instantly share code, notes, and snippets.

@sergey-glushakov
Created August 9, 2022 17:32
Show Gist options
  • Save sergey-glushakov/ebc459f596bf284728b05119ddb1f546 to your computer and use it in GitHub Desktop.
Save sergey-glushakov/ebc459f596bf284728b05119ddb1f546 to your computer and use it in GitHub Desktop.
yt-dlp installation.You can install yt-dlp using one of the following methods

In UNIX-like OSes (MacOS, Linux, BSD), you can also install the same in one of the following ways:

curl

  sudo curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp
  sudo chmod a+rx /usr/local/bin/yt-dlp

wget

  sudo wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp
  sudo chmod a+rx /usr/local/bin/yt-dlp

aria2c

  sudo aria2c https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp --dir /usr/local/bin -o yt-dlp
  sudo chmod a+rx /usr/local/bin/yt-dlp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment