-
Notifications
You must be signed in to change notification settings - Fork 0
Install youtube dl CLI on macOS or Linux
Daniel Reuter edited this page Feb 16, 2020
·
1 revision
With apt-get
:
sudo apt-get install youtube-dl
With brew
for macOS:
brew install youtube-dl
With npm
:
npm install youtube-dl
With pacman
in Arch Linux
sudo pacman -S youtube-dl
Or you can use curl
/wget
:
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl