How to remove youtube-dlg - Ubuntu Mate
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
3
down vote
favorite
I am using Ubuntu Mate.
I installed youtube-dl-gui from
http://ppa.launchpad.net/nilarimogard/webupd8/ubuntu/pool/main/y/youtube-dlg/
Downloaded youtube-dlg_0.4-1~webupd8~zesty4_all.deb
Then double clicked the file and thus install it.
When I needed to remove it, I opened synaptic
and remove the youtube-dlg
package.
Still some of the element is remaining and it is conflicting with my youtube-dl
program which I installed using apt-get install youtube-dl
.
What can I do?
apt ppa deb youtube-dl
add a comment |Â
up vote
3
down vote
favorite
I am using Ubuntu Mate.
I installed youtube-dl-gui from
http://ppa.launchpad.net/nilarimogard/webupd8/ubuntu/pool/main/y/youtube-dlg/
Downloaded youtube-dlg_0.4-1~webupd8~zesty4_all.deb
Then double clicked the file and thus install it.
When I needed to remove it, I opened synaptic
and remove the youtube-dlg
package.
Still some of the element is remaining and it is conflicting with my youtube-dl
program which I installed using apt-get install youtube-dl
.
What can I do?
apt ppa deb youtube-dl
1
Please add output ofapt-cache policy youtube-dl youtube-dlg
andwhich youtube-dlg
to the question.
â N0rbert
May 23 at 22:05
apt-cache policy youtube-dlg
returnsN: Unable to locate package youtube-dlg
.youtube-dlg
is not in the repository. I downloaded and double clicked to install it. I already removedyoutube-dlg
usingsynaptic
. So,which youtube-dlg
also return nothing.
â blueray
May 24 at 2:26
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I am using Ubuntu Mate.
I installed youtube-dl-gui from
http://ppa.launchpad.net/nilarimogard/webupd8/ubuntu/pool/main/y/youtube-dlg/
Downloaded youtube-dlg_0.4-1~webupd8~zesty4_all.deb
Then double clicked the file and thus install it.
When I needed to remove it, I opened synaptic
and remove the youtube-dlg
package.
Still some of the element is remaining and it is conflicting with my youtube-dl
program which I installed using apt-get install youtube-dl
.
What can I do?
apt ppa deb youtube-dl
I am using Ubuntu Mate.
I installed youtube-dl-gui from
http://ppa.launchpad.net/nilarimogard/webupd8/ubuntu/pool/main/y/youtube-dlg/
Downloaded youtube-dlg_0.4-1~webupd8~zesty4_all.deb
Then double clicked the file and thus install it.
When I needed to remove it, I opened synaptic
and remove the youtube-dlg
package.
Still some of the element is remaining and it is conflicting with my youtube-dl
program which I installed using apt-get install youtube-dl
.
What can I do?
apt ppa deb youtube-dl
edited May 24 at 1:41
asked May 23 at 21:55
blueray
1327
1327
1
Please add output ofapt-cache policy youtube-dl youtube-dlg
andwhich youtube-dlg
to the question.
â N0rbert
May 23 at 22:05
apt-cache policy youtube-dlg
returnsN: Unable to locate package youtube-dlg
.youtube-dlg
is not in the repository. I downloaded and double clicked to install it. I already removedyoutube-dlg
usingsynaptic
. So,which youtube-dlg
also return nothing.
â blueray
May 24 at 2:26
add a comment |Â
1
Please add output ofapt-cache policy youtube-dl youtube-dlg
andwhich youtube-dlg
to the question.
â N0rbert
May 23 at 22:05
apt-cache policy youtube-dlg
returnsN: Unable to locate package youtube-dlg
.youtube-dlg
is not in the repository. I downloaded and double clicked to install it. I already removedyoutube-dlg
usingsynaptic
. So,which youtube-dlg
also return nothing.
â blueray
May 24 at 2:26
1
1
Please add output of
apt-cache policy youtube-dl youtube-dlg
and which youtube-dlg
to the question.â N0rbert
May 23 at 22:05
Please add output of
apt-cache policy youtube-dl youtube-dlg
and which youtube-dlg
to the question.â N0rbert
May 23 at 22:05
apt-cache policy youtube-dlg
returns N: Unable to locate package youtube-dlg
. youtube-dlg
is not in the repository. I downloaded and double clicked to install it. I already removed youtube-dlg
using synaptic
. So, which youtube-dlg
also return nothing.â blueray
May 24 at 2:26
apt-cache policy youtube-dlg
returns N: Unable to locate package youtube-dlg
. youtube-dlg
is not in the repository. I downloaded and double clicked to install it. I already removed youtube-dlg
using synaptic
. So, which youtube-dlg
also return nothing.â blueray
May 24 at 2:26
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
Run these commands:
$ sudo apt purge youtube-dl
$ sudo apt purge youtube-dlg
$ sudo apt autoremove
$ sudo apt install youtube-dl
The first two commands will purge the two packages as well as the interlinking dependencies. The third command will remove the residue that is no longer being used since both packages are purged. The last command will perform a clean install of the youtube-dl
from the repository.
The only issue with this answer issudo apt install youtube-dl
install a old version. The method workes for me issudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
& thensudo chmod a+rx /usr/local/bin/youtube-dl
as mentioned in rg3.github.io/youtube-dl/download.html
â blueray
May 24 at 2:15
1
I notice your question changed. I was addressing the method of retrieving it from the repository (the one you originally referred from Synaptic). The main concern was to clean out the residue that was causing the conflict and to help you to have a starting clean point. It's common for users to get the latest versions of their favorite apps from the developers or other more recent distributions other than the default repository, which is usually at least one version earlier. Thanks for the acknowledgment of merit in the answer. Welcome to Askubunt!
â L. D. James
May 24 at 2:23
I got confused when I installed a package using double click and even after removing it fromsynaptic
it was giving trouble.
â blueray
May 24 at 2:35
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
Run these commands:
$ sudo apt purge youtube-dl
$ sudo apt purge youtube-dlg
$ sudo apt autoremove
$ sudo apt install youtube-dl
The first two commands will purge the two packages as well as the interlinking dependencies. The third command will remove the residue that is no longer being used since both packages are purged. The last command will perform a clean install of the youtube-dl
from the repository.
The only issue with this answer issudo apt install youtube-dl
install a old version. The method workes for me issudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
& thensudo chmod a+rx /usr/local/bin/youtube-dl
as mentioned in rg3.github.io/youtube-dl/download.html
â blueray
May 24 at 2:15
1
I notice your question changed. I was addressing the method of retrieving it from the repository (the one you originally referred from Synaptic). The main concern was to clean out the residue that was causing the conflict and to help you to have a starting clean point. It's common for users to get the latest versions of their favorite apps from the developers or other more recent distributions other than the default repository, which is usually at least one version earlier. Thanks for the acknowledgment of merit in the answer. Welcome to Askubunt!
â L. D. James
May 24 at 2:23
I got confused when I installed a package using double click and even after removing it fromsynaptic
it was giving trouble.
â blueray
May 24 at 2:35
add a comment |Â
up vote
3
down vote
accepted
Run these commands:
$ sudo apt purge youtube-dl
$ sudo apt purge youtube-dlg
$ sudo apt autoremove
$ sudo apt install youtube-dl
The first two commands will purge the two packages as well as the interlinking dependencies. The third command will remove the residue that is no longer being used since both packages are purged. The last command will perform a clean install of the youtube-dl
from the repository.
The only issue with this answer issudo apt install youtube-dl
install a old version. The method workes for me issudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
& thensudo chmod a+rx /usr/local/bin/youtube-dl
as mentioned in rg3.github.io/youtube-dl/download.html
â blueray
May 24 at 2:15
1
I notice your question changed. I was addressing the method of retrieving it from the repository (the one you originally referred from Synaptic). The main concern was to clean out the residue that was causing the conflict and to help you to have a starting clean point. It's common for users to get the latest versions of their favorite apps from the developers or other more recent distributions other than the default repository, which is usually at least one version earlier. Thanks for the acknowledgment of merit in the answer. Welcome to Askubunt!
â L. D. James
May 24 at 2:23
I got confused when I installed a package using double click and even after removing it fromsynaptic
it was giving trouble.
â blueray
May 24 at 2:35
add a comment |Â
up vote
3
down vote
accepted
up vote
3
down vote
accepted
Run these commands:
$ sudo apt purge youtube-dl
$ sudo apt purge youtube-dlg
$ sudo apt autoremove
$ sudo apt install youtube-dl
The first two commands will purge the two packages as well as the interlinking dependencies. The third command will remove the residue that is no longer being used since both packages are purged. The last command will perform a clean install of the youtube-dl
from the repository.
Run these commands:
$ sudo apt purge youtube-dl
$ sudo apt purge youtube-dlg
$ sudo apt autoremove
$ sudo apt install youtube-dl
The first two commands will purge the two packages as well as the interlinking dependencies. The third command will remove the residue that is no longer being used since both packages are purged. The last command will perform a clean install of the youtube-dl
from the repository.
answered May 23 at 22:14
L. D. James
17.3k43077
17.3k43077
The only issue with this answer issudo apt install youtube-dl
install a old version. The method workes for me issudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
& thensudo chmod a+rx /usr/local/bin/youtube-dl
as mentioned in rg3.github.io/youtube-dl/download.html
â blueray
May 24 at 2:15
1
I notice your question changed. I was addressing the method of retrieving it from the repository (the one you originally referred from Synaptic). The main concern was to clean out the residue that was causing the conflict and to help you to have a starting clean point. It's common for users to get the latest versions of their favorite apps from the developers or other more recent distributions other than the default repository, which is usually at least one version earlier. Thanks for the acknowledgment of merit in the answer. Welcome to Askubunt!
â L. D. James
May 24 at 2:23
I got confused when I installed a package using double click and even after removing it fromsynaptic
it was giving trouble.
â blueray
May 24 at 2:35
add a comment |Â
The only issue with this answer issudo apt install youtube-dl
install a old version. The method workes for me issudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
& thensudo chmod a+rx /usr/local/bin/youtube-dl
as mentioned in rg3.github.io/youtube-dl/download.html
â blueray
May 24 at 2:15
1
I notice your question changed. I was addressing the method of retrieving it from the repository (the one you originally referred from Synaptic). The main concern was to clean out the residue that was causing the conflict and to help you to have a starting clean point. It's common for users to get the latest versions of their favorite apps from the developers or other more recent distributions other than the default repository, which is usually at least one version earlier. Thanks for the acknowledgment of merit in the answer. Welcome to Askubunt!
â L. D. James
May 24 at 2:23
I got confused when I installed a package using double click and even after removing it fromsynaptic
it was giving trouble.
â blueray
May 24 at 2:35
The only issue with this answer is
sudo apt install youtube-dl
install a old version. The method workes for me is sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
& then sudo chmod a+rx /usr/local/bin/youtube-dl
as mentioned in rg3.github.io/youtube-dl/download.htmlâ blueray
May 24 at 2:15
The only issue with this answer is
sudo apt install youtube-dl
install a old version. The method workes for me is sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
& then sudo chmod a+rx /usr/local/bin/youtube-dl
as mentioned in rg3.github.io/youtube-dl/download.htmlâ blueray
May 24 at 2:15
1
1
I notice your question changed. I was addressing the method of retrieving it from the repository (the one you originally referred from Synaptic). The main concern was to clean out the residue that was causing the conflict and to help you to have a starting clean point. It's common for users to get the latest versions of their favorite apps from the developers or other more recent distributions other than the default repository, which is usually at least one version earlier. Thanks for the acknowledgment of merit in the answer. Welcome to Askubunt!
â L. D. James
May 24 at 2:23
I notice your question changed. I was addressing the method of retrieving it from the repository (the one you originally referred from Synaptic). The main concern was to clean out the residue that was causing the conflict and to help you to have a starting clean point. It's common for users to get the latest versions of their favorite apps from the developers or other more recent distributions other than the default repository, which is usually at least one version earlier. Thanks for the acknowledgment of merit in the answer. Welcome to Askubunt!
â L. D. James
May 24 at 2:23
I got confused when I installed a package using double click and even after removing it from
synaptic
it was giving trouble.â blueray
May 24 at 2:35
I got confused when I installed a package using double click and even after removing it from
synaptic
it was giving trouble.â blueray
May 24 at 2:35
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1039576%2fhow-to-remove-youtube-dlg-ubuntu-mate%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
Please add output of
apt-cache policy youtube-dl youtube-dlg
andwhich youtube-dlg
to the question.â N0rbert
May 23 at 22:05
apt-cache policy youtube-dlg
returnsN: Unable to locate package youtube-dlg
.youtube-dlg
is not in the repository. I downloaded and double clicked to install it. I already removedyoutube-dlg
usingsynaptic
. So,which youtube-dlg
also return nothing.â blueray
May 24 at 2:26