I have the following youtube-dl version
youtube-dl --version
2020.03.24
I would like to update it with the following command
pip3 install --upgrade youtube-dl
Requirement already up-to-date: youtube-dl in ./.local/lib/python3.8/site-packages (2020.11.12)
It seems that I already have it updated to 2020.11.12 version, but when I check the version, it does not update it.
$ youtube-dl --version
2020.03.24
The question is: is my youtube-dl running on Python2? how can I change it to run with Python3? how can I update my youtube-dl to the latest version?
youbute-dl
by multiple methods. For example, the 2020.03.24 version may come from adeb
package that you've installed parallel to thepip
package. Check which binary the commandyoutube-dl
is using withwhereis youtube-dl
. – Henning Kockerbeck Nov 12 '20 at 12:39