When I type youtube-dl -U
, I get this error:
youtube-dl: error: youtube-dl's self-update mechanism is disabled on Debian.
Please update youtube-dl using apt(8).
See https://packages.debian.org/sid/youtube-dl for the latest packaged version.
When I type youtube-dl -U
, I get this error:
youtube-dl: error: youtube-dl's self-update mechanism is disabled on Debian.
Please update youtube-dl using apt(8).
See https://packages.debian.org/sid/youtube-dl for the latest packaged version.
If you want/need the latest youtube-dl
(and can't wait for it to be packaged & installed via debian/ubuntu .deb)
pip install update youtube-dl
pip
is the package management tool for python (the language that youtube-dl is written in).
[ If you haven't pip
installed; you can install it with sudo apt install python-pip
]
pip
installed version as well) I would suggest removing the deb packaged version first, then installing the python installed version of youtube-dl
.
– guiverc
Jan 13 '21 at 01:07
pip install update youtube-dl
if you don't want to wait for someone to package it & grab the updates via normalapt
means. The message listed is put in from upstream; removing (inc. changing) it would mean more testing.... – guiverc Jun 15 '18 at 01:01sudo apt install python-pip
then.pip
is the python package manager; youtube-dl is python... – guiverc Jun 15 '18 at 01:04