4

I use youtube-dl command for downloading the videos from Youtube. But now it is not working. So I thought it need to be update. I used youtube-dl -U to update, but they show the following message:

message shown by Terminal

So what should now I do?

David Foerster
  • 36,890
  • 56
  • 97
  • 151
Freddy
  • 1,349

2 Answers2

14

To update from command line, use the following:

sudo apt-get update
sudo apt-get dist-upgrade
Dremor
  • 793
4

To update type the following in command line

sudo apt-get update && apt-get upgrade
Bharat
  • 707