Cannot install ANYTHING at all
![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
0
down vote
favorite
So, I'm new to linux I'm using Lubuntu 17.10. When I try to install a package either in a terminal or software centre. I tried everything even re-installing and that didn't help!
When I try to install through terminal I get this message:
E: Unable to locate package (package name).
In the software centre I try to install a program but nothing happens :/
Can anyone help me? Thanks!
lubuntu 17.10
add a comment |Â
up vote
0
down vote
favorite
So, I'm new to linux I'm using Lubuntu 17.10. When I try to install a package either in a terminal or software centre. I tried everything even re-installing and that didn't help!
When I try to install through terminal I get this message:
E: Unable to locate package (package name).
In the software centre I try to install a program but nothing happens :/
Can anyone help me? Thanks!
lubuntu 17.10
Please first make sure that the package name is correct :apt-cache search [name]
or part of name. Or use the on-line search for package name : packages.ubuntu.com/search?keywords=g%2B%2B&searchon=names
â Knud Larsen
May 16 at 23:14
1
Did you first run:sudo apt update
? Welcome to Ask Ubuntu.
â chili555
May 16 at 23:34
Possible duplicate of "Unable to locate package" while trying to install packages with APT
â karel
May 17 at 8:48
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
So, I'm new to linux I'm using Lubuntu 17.10. When I try to install a package either in a terminal or software centre. I tried everything even re-installing and that didn't help!
When I try to install through terminal I get this message:
E: Unable to locate package (package name).
In the software centre I try to install a program but nothing happens :/
Can anyone help me? Thanks!
lubuntu 17.10
So, I'm new to linux I'm using Lubuntu 17.10. When I try to install a package either in a terminal or software centre. I tried everything even re-installing and that didn't help!
When I try to install through terminal I get this message:
E: Unable to locate package (package name).
In the software centre I try to install a program but nothing happens :/
Can anyone help me? Thanks!
lubuntu 17.10
asked May 16 at 23:07
![](https://lh6.googleusercontent.com/-sfI_XEm8kj4/AAAAAAAAAAI/AAAAAAAAAQA/KGcWarjCsTs/photo.jpg?sz=32)
![](https://lh6.googleusercontent.com/-sfI_XEm8kj4/AAAAAAAAAAI/AAAAAAAAAQA/KGcWarjCsTs/photo.jpg?sz=32)
Ãkos Rutai
1
1
Please first make sure that the package name is correct :apt-cache search [name]
or part of name. Or use the on-line search for package name : packages.ubuntu.com/search?keywords=g%2B%2B&searchon=names
â Knud Larsen
May 16 at 23:14
1
Did you first run:sudo apt update
? Welcome to Ask Ubuntu.
â chili555
May 16 at 23:34
Possible duplicate of "Unable to locate package" while trying to install packages with APT
â karel
May 17 at 8:48
add a comment |Â
Please first make sure that the package name is correct :apt-cache search [name]
or part of name. Or use the on-line search for package name : packages.ubuntu.com/search?keywords=g%2B%2B&searchon=names
â Knud Larsen
May 16 at 23:14
1
Did you first run:sudo apt update
? Welcome to Ask Ubuntu.
â chili555
May 16 at 23:34
Possible duplicate of "Unable to locate package" while trying to install packages with APT
â karel
May 17 at 8:48
Please first make sure that the package name is correct :
apt-cache search [name]
or part of name. Or use the on-line search for package name : packages.ubuntu.com/search?keywords=g%2B%2B&searchon=namesâ Knud Larsen
May 16 at 23:14
Please first make sure that the package name is correct :
apt-cache search [name]
or part of name. Or use the on-line search for package name : packages.ubuntu.com/search?keywords=g%2B%2B&searchon=namesâ Knud Larsen
May 16 at 23:14
1
1
Did you first run:
sudo apt update
? Welcome to Ask Ubuntu.â chili555
May 16 at 23:34
Did you first run:
sudo apt update
? Welcome to Ask Ubuntu.â chili555
May 16 at 23:34
Possible duplicate of "Unable to locate package" while trying to install packages with APT
â karel
May 17 at 8:48
Possible duplicate of "Unable to locate package" while trying to install packages with APT
â karel
May 17 at 8:48
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
This error shows up when your Sources.list doesn't have the information about the package you're trying to install.
If you're too new and don't know what is sources.list.
Apt uses a file that lists the 'sources' from which packages can be obtained. This file is located at /etc/apt/sources.list.
Possible steps to fix your issue :
- Make sure that the package you want to install actually exists or not.
- Run
sudo apt-update
to update sources.list, then try installing package again. - If even after step 2 your problem isn't solving, generate a sources.list using this online website : https://repogen.simplylinux.ch/
You can also try add repositories (main, universe, restricted, multiverse) manually by using the following commands
sudo add-apt-repository main
sudo add-apt-repository universe
sudo add-apt-repository restricted
sudo add-apt-repository multiverse
I'd maybe change the formatting of last block of code, it's not very clear as it is (at least on mobile).
â dsSTORM
May 17 at 8:48
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
This error shows up when your Sources.list doesn't have the information about the package you're trying to install.
If you're too new and don't know what is sources.list.
Apt uses a file that lists the 'sources' from which packages can be obtained. This file is located at /etc/apt/sources.list.
Possible steps to fix your issue :
- Make sure that the package you want to install actually exists or not.
- Run
sudo apt-update
to update sources.list, then try installing package again. - If even after step 2 your problem isn't solving, generate a sources.list using this online website : https://repogen.simplylinux.ch/
You can also try add repositories (main, universe, restricted, multiverse) manually by using the following commands
sudo add-apt-repository main
sudo add-apt-repository universe
sudo add-apt-repository restricted
sudo add-apt-repository multiverse
I'd maybe change the formatting of last block of code, it's not very clear as it is (at least on mobile).
â dsSTORM
May 17 at 8:48
add a comment |Â
up vote
0
down vote
This error shows up when your Sources.list doesn't have the information about the package you're trying to install.
If you're too new and don't know what is sources.list.
Apt uses a file that lists the 'sources' from which packages can be obtained. This file is located at /etc/apt/sources.list.
Possible steps to fix your issue :
- Make sure that the package you want to install actually exists or not.
- Run
sudo apt-update
to update sources.list, then try installing package again. - If even after step 2 your problem isn't solving, generate a sources.list using this online website : https://repogen.simplylinux.ch/
You can also try add repositories (main, universe, restricted, multiverse) manually by using the following commands
sudo add-apt-repository main
sudo add-apt-repository universe
sudo add-apt-repository restricted
sudo add-apt-repository multiverse
I'd maybe change the formatting of last block of code, it's not very clear as it is (at least on mobile).
â dsSTORM
May 17 at 8:48
add a comment |Â
up vote
0
down vote
up vote
0
down vote
This error shows up when your Sources.list doesn't have the information about the package you're trying to install.
If you're too new and don't know what is sources.list.
Apt uses a file that lists the 'sources' from which packages can be obtained. This file is located at /etc/apt/sources.list.
Possible steps to fix your issue :
- Make sure that the package you want to install actually exists or not.
- Run
sudo apt-update
to update sources.list, then try installing package again. - If even after step 2 your problem isn't solving, generate a sources.list using this online website : https://repogen.simplylinux.ch/
You can also try add repositories (main, universe, restricted, multiverse) manually by using the following commands
sudo add-apt-repository main
sudo add-apt-repository universe
sudo add-apt-repository restricted
sudo add-apt-repository multiverse
This error shows up when your Sources.list doesn't have the information about the package you're trying to install.
If you're too new and don't know what is sources.list.
Apt uses a file that lists the 'sources' from which packages can be obtained. This file is located at /etc/apt/sources.list.
Possible steps to fix your issue :
- Make sure that the package you want to install actually exists or not.
- Run
sudo apt-update
to update sources.list, then try installing package again. - If even after step 2 your problem isn't solving, generate a sources.list using this online website : https://repogen.simplylinux.ch/
You can also try add repositories (main, universe, restricted, multiverse) manually by using the following commands
sudo add-apt-repository main
sudo add-apt-repository universe
sudo add-apt-repository restricted
sudo add-apt-repository multiverse
edited May 17 at 8:51
answered May 17 at 8:45
Vishesh Gautam
36011
36011
I'd maybe change the formatting of last block of code, it's not very clear as it is (at least on mobile).
â dsSTORM
May 17 at 8:48
add a comment |Â
I'd maybe change the formatting of last block of code, it's not very clear as it is (at least on mobile).
â dsSTORM
May 17 at 8:48
I'd maybe change the formatting of last block of code, it's not very clear as it is (at least on mobile).
â dsSTORM
May 17 at 8:48
I'd maybe change the formatting of last block of code, it's not very clear as it is (at least on mobile).
â dsSTORM
May 17 at 8:48
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%2f1037161%2fcannot-install-anything-at-all%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
Please first make sure that the package name is correct :
apt-cache search [name]
or part of name. Or use the on-line search for package name : packages.ubuntu.com/search?keywords=g%2B%2B&searchon=namesâ Knud Larsen
May 16 at 23:14
1
Did you first run:
sudo apt update
? Welcome to Ask Ubuntu.â chili555
May 16 at 23:34
Possible duplicate of "Unable to locate package" while trying to install packages with APT
â karel
May 17 at 8:48