similar to: difficulty in Ubuntu 14.04 apt-getting R 3.3.2

Displaying 20 results from an estimated 1000 matches similar to: "difficulty in Ubuntu 14.04 apt-getting R 3.3.2"

2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
On 8 July 2024 at 19:32, marcoblanchette at icloud.com wrote: | Oh, again, sorry for the spam but the problem Lauren is seeing is when she is | trying to sign the key. Installing gnugpg usually takes care of that problem. I am not sure about that. For jammy, my current (and used) rocker/r2u:jammy Dockerfile is https://github.com/rocker-org/r2u/blob/master/jammy/Dockerfile and it does what
2017 Apr 19
0
difficulty in Ubuntu 14.04 apt-getting R 3.3.2
On 19 April 2017 at 09:38, Jennifer Lyon wrote: | Hi: | | I have a Dockerfile, which builds an image which installed R 3.3.2 in | Ubuntu 14.04, but building using that Dockerfile seems to have stopped | working and I am unclear why. | | I believe the relevant error is: | | Some packages could not be installed. This may mean that you have | requested an impossible situation or if you are using
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Lauren, little oversight from my Dockerfile, if you want to follow the CRAN steps and get the R from the cloud.r-project.org server, you want to replace && add-apt-repository -y "ppa:marutter/rrutter4.0" With && add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/" The ppa repo is Michael Rutter personal repo
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hi Dirk, Thank you so much for looking into this when you got home. I greatly appreciate it. I was actually in the midst of writing to everyone the following message: ?. ?. ?. Hi All, I have some good news. ? My docker image is now up-to-date with R version 4.4.1. I first had to clear a bunch of unused data using docker system prune ?force. Apparently, it cleared over 32.53 gigs of data, and
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hi Marco, Thank you for the follow up email. In the line below, do I replace $(lsb-release -cs) with jammy (Ubuntu 22.04) or leave it alone: Add-apt-repository ?deb https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/? It?s good to know about installations for Bioconductor. I am not currently using it, but I may need it in the future for other projects. Br, Lauren -- Lauren J. Gerber
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Yes, keep the $(lsb-release -cs) there. This allows you to change the version of the OS without having to change anything else (for instance we are migrating all of our docker to 24.04 LTS right now, so we only have to modify the FROM entry and all of our Dockerfile will still work). From: Gerber, Lauren J <lauren.gerber at helsinki.fi> Date: Thursday, July 11, 2024 at 2:21?AM To:
2020 Mar 28
4
Advice on article about installing R on Linux
Dear list, I've drafted an article on installing geographic R packages on Linux computers and would appreciate any feedback. Is the following text correct, useful and future-proof?: R?s spatial packages can be installed from source on recent (since Ubuntu 19.04) versions of this popular operating system, once the appropriate repository has been set-up, meaning faster install times (only a
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
No sure why you?re doubting me but if one would like the minimal Dockerfile following the CRAN recommendations at https://cloud.r-project.org/bin/linux/ubuntu/, one would simply do FROM ubuntu:22.04 USER root ENV DEBIAN_FRONTEND noninteractive ## Configure Ubuntu for R install RUN apt update \ && apt install -y --no-install-recommends \ software-properties-common \ gnupg2 \
2020 Jun 24
2
Update on docker Python:3 and adding R:4.x
I continue to receive an error installing R via dockerfile on a buster image python:3. E: The value 'buster-cran40' is invalid for APT::Default-Release as such a release is not available in the sources My starting point is the debian buster based Python:3 image adding a couple of python specific configurations and then using the commands in the R project documentation for installing R on
2020 Jun 25
4
Update on docker Python:3 and adding R:4.x
My dockerfile: FROM python:3 WORKDIR /usr/src/app COPY requirements.txt ./ COPY languageserver-master ./ COPY radian-master ./ RUN pip3 install --no-cache-dir -r requirements.txt EXPOSE 8080 RUN apt-key adv --keyserver keys.gnupg.net --recv-key 'E19F5F87128899B192B1A2C2AD5F960A256A04AF' RUN echo "deb http://cloud.r-project.org/bin/linux/debian buster-cran40/" >>
2017 Apr 05
2
Very hard to reproduce bug (?) in R-devel
On Wed, Apr 5, 2017 at 2:24 PM, Robert McGehee <rmcgehee at walleyetrading.net> wrote: > Winston, > I had a similar experience to you tracking down an insanely difficult bug > in my R code that "disappeared" whenever slight changes were made to the > script (e.g. like adding cat() statements). In my case, it coincided with > my over-eager compilation of R and its
2018 Apr 29
2
R 3.5.0 Binaries for Ubuntu now available
On 04/29/2018 09:30 AM, Jeroen Ooms wrote: > On Sat, Apr 28, 2018 at 10:00 PM, Michael Rutter <marutter at gmail.com> wrote: >> These have not been mirrored to CRAN as I want to have the other r-cran >> packages built against R 3.5 before adding to CRAN. Worried about breaking >> working systems currently on R 3.4.4. > > Thanks, Michael. I did some simple tests,
2024 Jul 08
2
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hmm? It?s picking up the pre-made binary from ppa:marutter/rrutter4.0 using apt-get install. Isn?t it what Lauren?s trying to do? From: Dirk Eddelbuettel <edd at debian.org> Date: Monday, July 8, 2024 at 11:57?AM To: marcoblanchette at icloud.com <marcoblanchette at icloud.com> Cc: Gerber, Lauren J <lauren.gerber at helsinki.fi>, r-sig-debian at r-project.org <r-sig-debian
2020 Mar 28
1
Advice on article about installing R on Linux
On 28 March 2020 at 14:04, Robin Lovelace wrote: | To the list this time... | | On Sat, Mar 28, 2020 at 2:03 PM Robin Lovelace <rob00x at gmail.com> wrote: | | > Hi Dirk, | > | > Thanks for the quick response. | > | > I've updated the draft post following your suggestions, see the updated | > version, in nice .md format, here: | >
2020 Jan 14
5
as-cran issue ==> set _R_CHECK_LENGTH_1_* settings!
>>>>> Avraham Adler >>>>> on Mon, 13 Jan 2020 14:38:12 -0500 writes: > Those of us stuck on Windows but who attempt to develop properly are > wounded to the quick, sir! > :) > Avi Indeed, you had a ' :) ' , but others have perceived this as an insult. I'm really really sorry for that and do want to apologize to all of
2017 Apr 27
2
R installation problems on Linux Mint 18.1 via jessie-cran3
Okay folks, I give up and - frankly - I'm fed up! I thought I'd sorted all this last week, but clearly not. I've tried using mirrors from here in the UK, Ireland, France and the USA and whichever mirror I use, all I get is this: clive at climate ~ $ sudo apt-get update Hit:1 http://ubuntu.mirrors.uk2.net/ubuntu xenial InRelease Ign:2 http://dl.google.com/linux/chrome/deb stable
2020 Mar 28
1
Advice on article about installing R on Linux
On 3/28/20 10:04 AM, Robin Lovelace wrote: > To the list this time... > > On Sat, Mar 28, 2020 at 2:03 PM Robin Lovelace <rob00x at gmail.com> wrote: > >> Hi Dirk, >> >> Thanks for the quick response. >> >> I've updated the draft post following your suggestions, see the updated >> version, in nice .md format, here: >>
2016 Mar 21
3
Outdated r-base-core when installing on Ubuntu 14.04
I have a chromebook with a fresh minimal install of Ubuntu 14.04 running through crouton, and I'm trying to install the latest version of R. The only thing I have done to the system before trying to install R is install gedit. When I try to install R I get an unmet dependencies error that complains that the version of r-base-core available isn't new enough. I followed the instructions at
2019 Dec 30
2
how to check as CRAN with alternative BLAS?
One of my packages is slated to be archived from CRAN due to failures when the ATLAS BLAS is used. I am unable to replicate the error on my machine under R 3.6.1 using the atlas library from ubuntu (seems to be 3.10.2-9, while the good professor is using 3.10.3 per https://www.stats.ox.ac.uk/pub/bdr/Rblas/README.txt ). I also tried the rocker/r-base with R 3.6.2 and
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Oh, again, sorry for the spam but the problem Lauren is seeing is when she is trying to sign the key. Installing gnugpg usually takes care of that problem. From: marcoblanchette at icloud.com <marcoblanchette at icloud.com> Date: Monday, July 8, 2024 at 12:26?PM To: Dirk Eddelbuettel <edd at debian.org> Cc: Gerber, Lauren J <lauren.gerber at helsinki.fi>, r-sig-debian at