Apt unmet dependencies while installing R on Ubuntu 16.04
I wanted to install the new R version so I did a purge by removing all r-*. And then I broke everything unfortunately. I try to reinstall R project by typing
sudo apt install r-base r-base-core r-recommended
and then I obtain
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
r-base-core : Depends: libc6 (>= 2.27) but 2.23-0ubuntu11 is to be
installed
Depends: libcurl4 (>= 7.28.0) but it is not installable
Depends: libicu60 (>= 60.1-1~) but it is not installable
Depends: libreadline7 (>= 6.0) but it is not installable
Recommends: r-base-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Does anyone know how to solve this ?
16.04 apt package-management dependencies r
New contributor
add a comment |
I wanted to install the new R version so I did a purge by removing all r-*. And then I broke everything unfortunately. I try to reinstall R project by typing
sudo apt install r-base r-base-core r-recommended
and then I obtain
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
r-base-core : Depends: libc6 (>= 2.27) but 2.23-0ubuntu11 is to be
installed
Depends: libcurl4 (>= 7.28.0) but it is not installable
Depends: libicu60 (>= 60.1-1~) but it is not installable
Depends: libreadline7 (>= 6.0) but it is not installable
Recommends: r-base-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Does anyone know how to solve this ?
16.04 apt package-management dependencies r
New contributor
You have held-broken packages. Fix this first (ie. trysudo apt -f install
& explore anything it reports, I would fix those first). I'd also view theapt
logs to see what you removed with your first listed command, and use that as a guide on fixing your system. I'd suggest closely avoiding using wildcards on remove commands unless you closely scrutinize what's being removed
– guiverc
yesterday
1
A quick look at the 16.04 repo reveals that the versions of the lib dependencies that are attempting to be installed are not part of the standard 16.04 distribution so they're not available. Is it possible you're trying to install a newer version of R still such that the dependencies can't be met on your Ubuntu distro as is? packages.ubuntu.com/en/xenial/libs
– Steve
yesterday
1
Ok, I'm dumb. I found out that I put the wrong source in my sources.list. I putdeb https://cloud.r-project.org/bin/linux/ubuntu cosmic-cran35/
instead of debhttps://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/
. Thank you !
– Akusa
yesterday
add a comment |
I wanted to install the new R version so I did a purge by removing all r-*. And then I broke everything unfortunately. I try to reinstall R project by typing
sudo apt install r-base r-base-core r-recommended
and then I obtain
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
r-base-core : Depends: libc6 (>= 2.27) but 2.23-0ubuntu11 is to be
installed
Depends: libcurl4 (>= 7.28.0) but it is not installable
Depends: libicu60 (>= 60.1-1~) but it is not installable
Depends: libreadline7 (>= 6.0) but it is not installable
Recommends: r-base-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Does anyone know how to solve this ?
16.04 apt package-management dependencies r
New contributor
I wanted to install the new R version so I did a purge by removing all r-*. And then I broke everything unfortunately. I try to reinstall R project by typing
sudo apt install r-base r-base-core r-recommended
and then I obtain
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
r-base-core : Depends: libc6 (>= 2.27) but 2.23-0ubuntu11 is to be
installed
Depends: libcurl4 (>= 7.28.0) but it is not installable
Depends: libicu60 (>= 60.1-1~) but it is not installable
Depends: libreadline7 (>= 6.0) but it is not installable
Recommends: r-base-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Does anyone know how to solve this ?
16.04 apt package-management dependencies r
16.04 apt package-management dependencies r
New contributor
New contributor
edited 3 hours ago
Pablo Bianchi
2,94521535
2,94521535
New contributor
asked yesterday
AkusaAkusa
1
1
New contributor
New contributor
You have held-broken packages. Fix this first (ie. trysudo apt -f install
& explore anything it reports, I would fix those first). I'd also view theapt
logs to see what you removed with your first listed command, and use that as a guide on fixing your system. I'd suggest closely avoiding using wildcards on remove commands unless you closely scrutinize what's being removed
– guiverc
yesterday
1
A quick look at the 16.04 repo reveals that the versions of the lib dependencies that are attempting to be installed are not part of the standard 16.04 distribution so they're not available. Is it possible you're trying to install a newer version of R still such that the dependencies can't be met on your Ubuntu distro as is? packages.ubuntu.com/en/xenial/libs
– Steve
yesterday
1
Ok, I'm dumb. I found out that I put the wrong source in my sources.list. I putdeb https://cloud.r-project.org/bin/linux/ubuntu cosmic-cran35/
instead of debhttps://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/
. Thank you !
– Akusa
yesterday
add a comment |
You have held-broken packages. Fix this first (ie. trysudo apt -f install
& explore anything it reports, I would fix those first). I'd also view theapt
logs to see what you removed with your first listed command, and use that as a guide on fixing your system. I'd suggest closely avoiding using wildcards on remove commands unless you closely scrutinize what's being removed
– guiverc
yesterday
1
A quick look at the 16.04 repo reveals that the versions of the lib dependencies that are attempting to be installed are not part of the standard 16.04 distribution so they're not available. Is it possible you're trying to install a newer version of R still such that the dependencies can't be met on your Ubuntu distro as is? packages.ubuntu.com/en/xenial/libs
– Steve
yesterday
1
Ok, I'm dumb. I found out that I put the wrong source in my sources.list. I putdeb https://cloud.r-project.org/bin/linux/ubuntu cosmic-cran35/
instead of debhttps://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/
. Thank you !
– Akusa
yesterday
You have held-broken packages. Fix this first (ie. try
sudo apt -f install
& explore anything it reports, I would fix those first). I'd also view the apt
logs to see what you removed with your first listed command, and use that as a guide on fixing your system. I'd suggest closely avoiding using wildcards on remove commands unless you closely scrutinize what's being removed– guiverc
yesterday
You have held-broken packages. Fix this first (ie. try
sudo apt -f install
& explore anything it reports, I would fix those first). I'd also view the apt
logs to see what you removed with your first listed command, and use that as a guide on fixing your system. I'd suggest closely avoiding using wildcards on remove commands unless you closely scrutinize what's being removed– guiverc
yesterday
1
1
A quick look at the 16.04 repo reveals that the versions of the lib dependencies that are attempting to be installed are not part of the standard 16.04 distribution so they're not available. Is it possible you're trying to install a newer version of R still such that the dependencies can't be met on your Ubuntu distro as is? packages.ubuntu.com/en/xenial/libs
– Steve
yesterday
A quick look at the 16.04 repo reveals that the versions of the lib dependencies that are attempting to be installed are not part of the standard 16.04 distribution so they're not available. Is it possible you're trying to install a newer version of R still such that the dependencies can't be met on your Ubuntu distro as is? packages.ubuntu.com/en/xenial/libs
– Steve
yesterday
1
1
Ok, I'm dumb. I found out that I put the wrong source in my sources.list. I put
deb https://cloud.r-project.org/bin/linux/ubuntu cosmic-cran35/
instead of deb https://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/
. Thank you !– Akusa
yesterday
Ok, I'm dumb. I found out that I put the wrong source in my sources.list. I put
deb https://cloud.r-project.org/bin/linux/ubuntu cosmic-cran35/
instead of deb https://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/
. Thank you !– Akusa
yesterday
add a comment |
1 Answer
1
active
oldest
votes
Try this:
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install libc6 libcurl4 libicu60-dev libreadline7
sudo apt-get install r-base r-base-core r-recommended
I added the wrong source in my sources.list. Instead of putting the xenial one, I put the cosmic one. By correcting this, everything seems to work now !
– Akusa
yesterday
1
@Akusa If you found the solution, please post an answer! Self-answers and accepting them are welcome here!
– Melebius
18 hours ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
Akusa is a new contributor. Be nice, and check out our Code of Conduct.
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%2faskubuntu.com%2fquestions%2f1125448%2fapt-unmet-dependencies-while-installing-r-on-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try this:
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install libc6 libcurl4 libicu60-dev libreadline7
sudo apt-get install r-base r-base-core r-recommended
I added the wrong source in my sources.list. Instead of putting the xenial one, I put the cosmic one. By correcting this, everything seems to work now !
– Akusa
yesterday
1
@Akusa If you found the solution, please post an answer! Self-answers and accepting them are welcome here!
– Melebius
18 hours ago
add a comment |
Try this:
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install libc6 libcurl4 libicu60-dev libreadline7
sudo apt-get install r-base r-base-core r-recommended
I added the wrong source in my sources.list. Instead of putting the xenial one, I put the cosmic one. By correcting this, everything seems to work now !
– Akusa
yesterday
1
@Akusa If you found the solution, please post an answer! Self-answers and accepting them are welcome here!
– Melebius
18 hours ago
add a comment |
Try this:
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install libc6 libcurl4 libicu60-dev libreadline7
sudo apt-get install r-base r-base-core r-recommended
Try this:
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install libc6 libcurl4 libicu60-dev libreadline7
sudo apt-get install r-base r-base-core r-recommended
answered yesterday
Bohdan TkhirBohdan Tkhir
11
11
I added the wrong source in my sources.list. Instead of putting the xenial one, I put the cosmic one. By correcting this, everything seems to work now !
– Akusa
yesterday
1
@Akusa If you found the solution, please post an answer! Self-answers and accepting them are welcome here!
– Melebius
18 hours ago
add a comment |
I added the wrong source in my sources.list. Instead of putting the xenial one, I put the cosmic one. By correcting this, everything seems to work now !
– Akusa
yesterday
1
@Akusa If you found the solution, please post an answer! Self-answers and accepting them are welcome here!
– Melebius
18 hours ago
I added the wrong source in my sources.list. Instead of putting the xenial one, I put the cosmic one. By correcting this, everything seems to work now !
– Akusa
yesterday
I added the wrong source in my sources.list. Instead of putting the xenial one, I put the cosmic one. By correcting this, everything seems to work now !
– Akusa
yesterday
1
1
@Akusa If you found the solution, please post an answer! Self-answers and accepting them are welcome here!
– Melebius
18 hours ago
@Akusa If you found the solution, please post an answer! Self-answers and accepting them are welcome here!
– Melebius
18 hours ago
add a comment |
Akusa is a new contributor. Be nice, and check out our Code of Conduct.
Akusa is a new contributor. Be nice, and check out our Code of Conduct.
Akusa is a new contributor. Be nice, and check out our Code of Conduct.
Akusa is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1125448%2fapt-unmet-dependencies-while-installing-r-on-ubuntu-16-04%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
You have held-broken packages. Fix this first (ie. try
sudo apt -f install
& explore anything it reports, I would fix those first). I'd also view theapt
logs to see what you removed with your first listed command, and use that as a guide on fixing your system. I'd suggest closely avoiding using wildcards on remove commands unless you closely scrutinize what's being removed– guiverc
yesterday
1
A quick look at the 16.04 repo reveals that the versions of the lib dependencies that are attempting to be installed are not part of the standard 16.04 distribution so they're not available. Is it possible you're trying to install a newer version of R still such that the dependencies can't be met on your Ubuntu distro as is? packages.ubuntu.com/en/xenial/libs
– Steve
yesterday
1
Ok, I'm dumb. I found out that I put the wrong source in my sources.list. I put
deb https://cloud.r-project.org/bin/linux/ubuntu cosmic-cran35/
instead of debhttps://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/
. Thank you !– Akusa
yesterday