Celeb Glow
updates | March 29, 2026

youtube-dl from git no longer available

Right now I would download a small video from walkthroug from a game. so I started with

alex@Guilmon:~/Videos$ sudo youtube-dl -U
ERROR: can't find the current version. Please try again later.
alex@Guilmon:~/Videos$ 

after little bit searching I found this and this too

Is there an alternative? with my current version I am not able to download it

alex@Guilmon:~/Videos$ youtube-dl --version
2020.09.14
alex@Guilmon:~/Videos$ 
3

3 Answers

The latest version is available on the official website, where you can download the tar.gz file (v2020.09.20). On the homepage, there is a message: "Currently our dev repository is taken down due to DMCA takedown notice by RIAA. Downloads still work as usual."

13

The widely used fork youtube-dlc is still being actively maintained.

It's probably a good idea to switch for the time being because the September release from youtube-dl.org is already bitrotted and doesn't work with YouTube (and possibly some other sites) any more. The most recent youtube-dlc release (dated today) does work.

It looks like youtube-dlc has removed the tests that were used as a pretext to take down the main repository. Whether that means they're safe, I couldn't say.

4

You could try this. This was in the readme of the original repo.

sudo curl -L -o /usr/local/bin/youtube-dl 

This updated my version to 2020.09.20. Maybe that'll be enough for you.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy