Skip to content

Instantly share code, notes, and snippets.

View javasoze's full-sized avatar

John Wang javasoze

View GitHub Profile
@moaj257
moaj257 / Youtube Downloader - Mac - Using terminal.md
Last active March 8, 2024 01:29
Download youtube videos via mac terminal
  1. Open terminal.
  2. Use any one of following to install youtube-dl (A downloader written in python).
    • Fire these 2 command if you have curl installed.
    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
    
    • Fire these 2 commands

sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl