Package 'libpango-1.0-0' has no installation candidate
I'm very new linux and recently In a very bold move I installed only ubuntu 13.04 on m laptop. no I have issue and I wanna install libpango-1.0-0 package with following command :
sudo apt-get install libpango-1.0-0
I get the folowing error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libpango-1.0-0 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libpango-1.0-0' has no installation candidate
What should I do?
linux ubuntu package-management
add a comment |
I'm very new linux and recently In a very bold move I installed only ubuntu 13.04 on m laptop. no I have issue and I wanna install libpango-1.0-0 package with following command :
sudo apt-get install libpango-1.0-0
I get the folowing error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libpango-1.0-0 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libpango-1.0-0' has no installation candidate
What should I do?
linux ubuntu package-management
add a comment |
I'm very new linux and recently In a very bold move I installed only ubuntu 13.04 on m laptop. no I have issue and I wanna install libpango-1.0-0 package with following command :
sudo apt-get install libpango-1.0-0
I get the folowing error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libpango-1.0-0 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libpango-1.0-0' has no installation candidate
What should I do?
linux ubuntu package-management
I'm very new linux and recently In a very bold move I installed only ubuntu 13.04 on m laptop. no I have issue and I wanna install libpango-1.0-0 package with following command :
sudo apt-get install libpango-1.0-0
I get the folowing error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libpango-1.0-0 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libpango-1.0-0' has no installation candidate
What should I do?
linux ubuntu package-management
linux ubuntu package-management
asked Oct 10 '13 at 23:10
EhphanEhphan
10312
10312
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I think the package name is libpango1.0-0
, not libpango-1.0-0
.
A good way to verify package names is to search the package lists, e.g. apt-cache search libpango
.
add a comment |
The problem is that the package isn't libpango-1.0-0
but libpango1.0-0
:
$ apt-cache policy libpango-1.0-0N: Unable to locate package libpango-1.0-0
N: Couldn't find any package by regex 'libpango-1.0-0'
$ apt-cache policy libpango1.0-0
libpango1.0-0:
Installed: 1.32.5-0ubuntu1
Candidate: 1.32.5-0ubuntu1
Version table:
*** 1.32.5-0ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ raring/main amd64 Packages
100 /var/lib/dpkg/status
You can check all packages starting with libpango and their versions like this:
apt-cache policy libpango*
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f657285%2fpackage-libpango-1-0-0-has-no-installation-candidate%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think the package name is libpango1.0-0
, not libpango-1.0-0
.
A good way to verify package names is to search the package lists, e.g. apt-cache search libpango
.
add a comment |
I think the package name is libpango1.0-0
, not libpango-1.0-0
.
A good way to verify package names is to search the package lists, e.g. apt-cache search libpango
.
add a comment |
I think the package name is libpango1.0-0
, not libpango-1.0-0
.
A good way to verify package names is to search the package lists, e.g. apt-cache search libpango
.
I think the package name is libpango1.0-0
, not libpango-1.0-0
.
A good way to verify package names is to search the package lists, e.g. apt-cache search libpango
.
answered Oct 10 '13 at 23:41
ernieernie
5,52821927
5,52821927
add a comment |
add a comment |
The problem is that the package isn't libpango-1.0-0
but libpango1.0-0
:
$ apt-cache policy libpango-1.0-0N: Unable to locate package libpango-1.0-0
N: Couldn't find any package by regex 'libpango-1.0-0'
$ apt-cache policy libpango1.0-0
libpango1.0-0:
Installed: 1.32.5-0ubuntu1
Candidate: 1.32.5-0ubuntu1
Version table:
*** 1.32.5-0ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ raring/main amd64 Packages
100 /var/lib/dpkg/status
You can check all packages starting with libpango and their versions like this:
apt-cache policy libpango*
add a comment |
The problem is that the package isn't libpango-1.0-0
but libpango1.0-0
:
$ apt-cache policy libpango-1.0-0N: Unable to locate package libpango-1.0-0
N: Couldn't find any package by regex 'libpango-1.0-0'
$ apt-cache policy libpango1.0-0
libpango1.0-0:
Installed: 1.32.5-0ubuntu1
Candidate: 1.32.5-0ubuntu1
Version table:
*** 1.32.5-0ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ raring/main amd64 Packages
100 /var/lib/dpkg/status
You can check all packages starting with libpango and their versions like this:
apt-cache policy libpango*
add a comment |
The problem is that the package isn't libpango-1.0-0
but libpango1.0-0
:
$ apt-cache policy libpango-1.0-0N: Unable to locate package libpango-1.0-0
N: Couldn't find any package by regex 'libpango-1.0-0'
$ apt-cache policy libpango1.0-0
libpango1.0-0:
Installed: 1.32.5-0ubuntu1
Candidate: 1.32.5-0ubuntu1
Version table:
*** 1.32.5-0ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ raring/main amd64 Packages
100 /var/lib/dpkg/status
You can check all packages starting with libpango and their versions like this:
apt-cache policy libpango*
The problem is that the package isn't libpango-1.0-0
but libpango1.0-0
:
$ apt-cache policy libpango-1.0-0N: Unable to locate package libpango-1.0-0
N: Couldn't find any package by regex 'libpango-1.0-0'
$ apt-cache policy libpango1.0-0
libpango1.0-0:
Installed: 1.32.5-0ubuntu1
Candidate: 1.32.5-0ubuntu1
Version table:
*** 1.32.5-0ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ raring/main amd64 Packages
100 /var/lib/dpkg/status
You can check all packages starting with libpango and their versions like this:
apt-cache policy libpango*
answered Oct 10 '13 at 23:42
BraiamBraiam
4,04631851
4,04631851
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f657285%2fpackage-libpango-1-0-0-has-no-installation-candidate%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown