Claude Falbriard
Claude Falbriard

Reputation: 935

Installing R Language on Ubuntu 16 - unmet dependencies

Installing the R language following the instructions at the site [ here ] .

During installation I receive an error "unmet dependencies" at the r-base component using the apt-get install command. See the log with the command sequence below:

apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
Executing: /tmp/tmp.QQyv0HB7mS/gpg.1.sh --keyserver
keyserver.ubuntu.com
--recv-keys
E298A3A825C0D65DFD57CBB651716619E084DAB9
gpg: requesting key E084DAB9 from hkp server keyserver.ubuntu.com
gpg: key E084DAB9: "Michael Rutter <[email protected]>" not changed
gpg: Total number processed: 1
gpg:              unchanged: 1

/data/shared/datascience# add-apt-repository 'deb [arch=s390x] https://cran.rstudio.com/bin/linux/ubuntu xenial/'

apt-get update
Hit:1 https://cran.rstudio.com/bin/linux/ubuntu xenial/ InRelease
Hit:2 http://ports.ubuntu.com/ubuntu-ports xenial InRelease  
Get:3 http://ports.ubuntu.com/ubuntu-ports xenial-updates InRelease [102 kB]
Get:4 http://ports.ubuntu.com/ubuntu-ports xenial-security InRelease [102 kB]
Get:5 http://ports.ubuntu.com/ubuntu-ports xenial-updates/main s390x Packages [554 kB]
Get:6 http://ports.ubuntu.com/ubuntu-ports xenial-updates/universe s390x Packages [494 kB]
Fetched 1252 kB in 12s (104 kB/s) 
Reading package lists... Done

apt-get install r-base
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 : Depends: r-base-core (>= 3.4.0-1xenial0) but it is not going to be installed
          Depends: r-recommended (= 3.4.0-1xenial0) but it is not going to be installed
          Recommends: r-base-html but it is not going to be installed
          Recommends: r-doc-html but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Is this an error in my install procedure, or is this packet broken?

Upvotes: 0

Views: 717

Answers (1)

Claude Falbriard
Claude Falbriard

Reputation: 935

By using the Universal Ubuntu repository and command shown below, the issue was solved:

sudo apt-get install r-base r-base-dev 

Upvotes: 1

Related Questions