Installing/updating R 3.6 on Ubuntu 18.04Ubuntu 12.04: updating package messageUpdating/installing...
Everyone for non livings
What exactly is a softlock?
Main differences between 5th edition Druid and 3.5 edition Druid
Is there a name for this metric: TN / (TN + FN)?
Can I sleep overnight at Stansted Airport
How could it be that the capo isn't changing the pitch?
Why did the Joi advertisement trigger K?
Is there any difference between these two sentences? (Adverbs)
In-universe, why does Doc Brown program the time machine to go to 1955?
IEEE Registration Authority mac prefix
std::tuple sizeof, is it a missed optimization?
If I have an accident, should I file a claim with my car insurance company?
'Hard work never hurt anyone' Why not 'hurts'?
Does immunity to damage from nonmagical attacks negate a rogue's Sneak Attack damage?
Case Studies and Real Problems for Teaching Optimization and Modelling
Did Alan Turing's student Robin Gandy assert that Charles Babbage had no notion of a universal computing machine?
Splitting polygons at narrowest part using R?
The little bee buzzes around the flower garden
Can there be plants on the dark side of a tidally locked world?
Which is the best password hashing algorithm in .NET Core?
Are kids with daycare background antisocial?
What does "se jouer" mean here?
Were the women of Travancore, India, taxed for covering their breasts by breast size?
What drugs were used in England during the High Middle Ages?
Installing/updating R 3.6 on Ubuntu 18.04
Ubuntu 12.04: updating package messageUpdating/installing non-system-critical applicationsProblem upgrading Ubuntu to version 18.04Error while installing vuze in Ubuntu 18.04 ltsHow to install a functional ARM cross-gcc toolchain on Ubuntu 18.04?Issue on updating Limits.conf on Ubuntu Server 18.04Ubuntu upgrade from 17.04 to 18.04Installing CUDA on my Ubuntu 18.04 systemAm I at risk? How to interpret debscan vulnerability output?Cancel failing apt-get upgrade
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I've recently acquired a machine with Ubuntu 18.04 on it. I installed R simply with:
sudo apt-get install r-base
And when I call $ R
in console, it starts up with:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
I'd like to get R 3.6 installed, primarily because I need BiocManager
and a bunch of latest versions of other R packages obtained through BiocManager
. I've followed the steps here, so now my /etc/apt/sources.list/
looks like (just the bottom bit that's relevant):
deb http://security.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted
deb http://security.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu bionic-security universe
deb http://security.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
# deb-src https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
# deb-src https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
And ran sudo apt-get install r-base
again.
But when I run $ R
from the console again, I still see:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
Is there something I'm missing? I'm new to setting up R and Linux in general, so I sense that there's a bunch of literature I'm missing about what's available via apt-get
, R versioning for Ubuntu, and so on. Any links to useful man pages would also be very helpful.
ubuntu upgrade repository r
New contributor
add a comment |
I've recently acquired a machine with Ubuntu 18.04 on it. I installed R simply with:
sudo apt-get install r-base
And when I call $ R
in console, it starts up with:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
I'd like to get R 3.6 installed, primarily because I need BiocManager
and a bunch of latest versions of other R packages obtained through BiocManager
. I've followed the steps here, so now my /etc/apt/sources.list/
looks like (just the bottom bit that's relevant):
deb http://security.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted
deb http://security.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu bionic-security universe
deb http://security.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
# deb-src https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
# deb-src https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
And ran sudo apt-get install r-base
again.
But when I run $ R
from the console again, I still see:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
Is there something I'm missing? I'm new to setting up R and Linux in general, so I sense that there's a bunch of literature I'm missing about what's available via apt-get
, R versioning for Ubuntu, and so on. Any links to useful man pages would also be very helpful.
ubuntu upgrade repository r
New contributor
Did you runsudo apt update
before trying to install the latest version? What doesapt-cache policy r-base
show?
– ajgringo619
2 hours ago
Also, you need to remove thedeb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
line; you've already added the correct (bionic) line.
– ajgringo619
1 hour ago
add a comment |
I've recently acquired a machine with Ubuntu 18.04 on it. I installed R simply with:
sudo apt-get install r-base
And when I call $ R
in console, it starts up with:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
I'd like to get R 3.6 installed, primarily because I need BiocManager
and a bunch of latest versions of other R packages obtained through BiocManager
. I've followed the steps here, so now my /etc/apt/sources.list/
looks like (just the bottom bit that's relevant):
deb http://security.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted
deb http://security.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu bionic-security universe
deb http://security.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
# deb-src https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
# deb-src https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
And ran sudo apt-get install r-base
again.
But when I run $ R
from the console again, I still see:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
Is there something I'm missing? I'm new to setting up R and Linux in general, so I sense that there's a bunch of literature I'm missing about what's available via apt-get
, R versioning for Ubuntu, and so on. Any links to useful man pages would also be very helpful.
ubuntu upgrade repository r
New contributor
I've recently acquired a machine with Ubuntu 18.04 on it. I installed R simply with:
sudo apt-get install r-base
And when I call $ R
in console, it starts up with:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
I'd like to get R 3.6 installed, primarily because I need BiocManager
and a bunch of latest versions of other R packages obtained through BiocManager
. I've followed the steps here, so now my /etc/apt/sources.list/
looks like (just the bottom bit that's relevant):
deb http://security.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted
deb http://security.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu bionic-security universe
deb http://security.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
# deb-src https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
# deb-src https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
And ran sudo apt-get install r-base
again.
But when I run $ R
from the console again, I still see:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
...
Is there something I'm missing? I'm new to setting up R and Linux in general, so I sense that there's a bunch of literature I'm missing about what's available via apt-get
, R versioning for Ubuntu, and so on. Any links to useful man pages would also be very helpful.
ubuntu upgrade repository r
ubuntu upgrade repository r
New contributor
New contributor
edited 9 mins ago
AndreyIto
New contributor
asked 3 hours ago
AndreyItoAndreyIto
1062 bronze badges
1062 bronze badges
New contributor
New contributor
Did you runsudo apt update
before trying to install the latest version? What doesapt-cache policy r-base
show?
– ajgringo619
2 hours ago
Also, you need to remove thedeb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
line; you've already added the correct (bionic) line.
– ajgringo619
1 hour ago
add a comment |
Did you runsudo apt update
before trying to install the latest version? What doesapt-cache policy r-base
show?
– ajgringo619
2 hours ago
Also, you need to remove thedeb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
line; you've already added the correct (bionic) line.
– ajgringo619
1 hour ago
Did you run
sudo apt update
before trying to install the latest version? What does apt-cache policy r-base
show?– ajgringo619
2 hours ago
Did you run
sudo apt update
before trying to install the latest version? What does apt-cache policy r-base
show?– ajgringo619
2 hours ago
Also, you need to remove the
deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
line; you've already added the correct (bionic) line.– ajgringo619
1 hour ago
Also, you need to remove the
deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
line; you've already added the correct (bionic) line.– ajgringo619
1 hour ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
AndreyIto 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%2funix.stackexchange.com%2fquestions%2f538915%2finstalling-updating-r-3-6-on-ubuntu-18-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
AndreyIto is a new contributor. Be nice, and check out our Code of Conduct.
AndreyIto is a new contributor. Be nice, and check out our Code of Conduct.
AndreyIto is a new contributor. Be nice, and check out our Code of Conduct.
AndreyIto is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f538915%2finstalling-updating-r-3-6-on-ubuntu-18-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
Did you run
sudo apt update
before trying to install the latest version? What doesapt-cache policy r-base
show?– ajgringo619
2 hours ago
Also, you need to remove the
deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
line; you've already added the correct (bionic) line.– ajgringo619
1 hour ago