R 4.2.2 on Ubuntu Server 22.10 - r

I try to install R 4.2.2 but it is able to install only 4.2.1.
The following packages have unmet dependencies: r-base-core :
Depends: libicu70 (>= 70.1-1~) but it is not installable
Recommends: r-doc-html but it is not going to be installed E: Unable to correct problems, you have held broken
packages.
I have
libicu-dev is already the newest version (71.1-3ubuntu1).
Could be that is not yet supported for 22.10? or is there any turnaround to install it?
Thanks

I am running ubuntu 22.10 and had the same problem. I have solved it via:
wget http://ftp.osuosl.org/pub/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb
sudo dpkg -i libicu70_70.1-2_amd64.deb
then this will work:
sudo apt-get install r-base-core

Related

Can't install R on Ubuntu 20.04 running in WSL 2

So, I am trying to install R on WSL 2 running Ubuntu 20.04. I followed the instructions here Cran ubuntu packages. As per instructions I added deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran40/
to /etc/apt/sources.list.
Added the security key sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
Ran sudo apt-get update. Checked R packages available: apt list r-base -a.
I get this list:
r-base/bionic-cran40 4.0.1-1.1804.0 all
r-base/bionic-cran40 4.0.0-1.1804.0 all
r-base/bionic 3.4.4-1ubuntu1 all
Finally I ran sudo apt-get install r-base. It threw the following error:
The following packages have unmet dependencies:
r-base : Depends: r-base-core (>= 4.0.1-1.1804.0) but it is not going to be installed
Depends: r-recommended (= 4.0.1-1.1804.0) but it is not going to be installed
Recommends: r-base-html but it is not going to be installed
So I tried running sudo apt-get install r-base-core. Got the following error:
r-base-core : Depends: liblapack3 but it is not going to be installed or
liblapack.so.3
Recommends: r-recommended but it is not going to be installed
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 why this is happening and if there's a way to install R on WSL 2 Ubuntu? There are other related questions here but they are not for Ubuntu 20.04 and R 4. Your help is appreciated. Thank you!
For the benefit of those who may have encountered the same issue, I solved it by replacing my original sources.list file by the one I got from this link. Then I followed the steps found at the R ubuntu packages page again and it installed the latest R version (4.0.3) as expected.

Package dependencies cannot be resolved error while installing r-base from Ubuntu Software center

The message says:-
This error could be caused by required additional software packages which are missing or not installable.
Furthermore, there could be a conflict between software packages which are not allowed to be installed at the same time.
Details:-
The following packages have unmet dependencies:-
r-base: Depends: r-base-core (>= 3.4.3-1trusty0) but 3.4.3-1trusty0 is to be installed
Depends: r-recommended (= 3.4.3-1trusty0) but 3.4.3-1trusty0 is to be installed
I have also tried the code:-
sudo apt-add-repository -y ppa:texlive-backports/ppa
sudo apt-get update
I cannot understand how to instal R in Ubuntu 14.04.

Errors when trying to install qtbase5-dev in Ubuntu

I'm trying to install the qt5 development libraries using sudo apt-get install qtbase5-dev, but I'm getting an error:
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:
qtbase5-dev : Depends: libgles2-mesa-dev or
libgles2-dev but it is not installable
Depends: libqt5gui5 (= 5.2.1+dfsg-1ubuntu14.3) but it is not going to be installed
Depends: libqt5printsupport5 (= 5.2.1+dfsg-1ubuntu14.3) but it is not going to be installed
Depends: libqt5widgets5 (= 5.2.1+dfsg-1ubuntu14.3) but it is not going to be installed
Recommends: libqt5opengl5-dev (= 5.2.1+dfsg-1ubuntu14.3) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
The problem is I don't have held packages - I checked using dpkg --get-selections | grep hold, but it showed nothing.
For me, this was caused by the oibaf graphics PPA being installed.
sudo apt-get install ppa-purge
sudo ppa-purge ppa:oibaf/graphics-drivers
will revert to stock graphics libs.
Manually installing libgles2-mesa-dev and then qtbase5-dev worked. I had to ran it in separate commands though:
sudo apt-get install libgles2-mesa-dev
sudo apt-get install qtbase5-dev

Install particular version(2.15.2) of r-base on ubuntu

I am newbie to both Ubuntu and R.
I am trying to install R 2.15.2 on ubuntu. Since the latest version of R is 3.0.X, I specified the version in /etc/apt/sources.list
deb http://cran.ma.imperial.ac.uk/bin/linux/ubuntu precise 2.15.2
Then I ran sudo apt-get install r-base.
It installs, but when I check version, it is 2.14.1, not 2.15.2
I tried to specify version in command line, such as:
sudo apt-get install r-base_2.15.2_1precision1
Always seeing:
E: Unable to locate package r-base_2.15.2_1precision1.
E: Couldn't find any package by regex 'r-base_2.15.2_1precision1'
Any suggestion? Thanks.
If I run command:
sudo apt-get install r-base=2.15.2-1precise0
See the following message:
The following packages have unmet dependencies:
r-base : Depends: r-recommended (= 2.15.2-1precise0) but 3.0.1-1precise0precise2 is to be installed
Recommends: r-base-html but it is not going to be installed
Find the solution.
I need to install like:
sudo apt-get install r-base-core=2.15.3-1precise0precise1
sudo apt-get install r-recommended=2.15.3-1precise0precise1
sudo apt-get install r-doc-html=2.15.3-1precise0precise1
sudo apt-get install r-base=2.15.3-1precise0precise1
Okay so the URL for where the packages are found has changed :^) on the cran.ma site:
Change the debian url to:
deb http://cran.ma.imperial.ac.uk/bin/linux/ubuntu precise/
do an apt-get update and try reinstalling
The complete instructions are on:
http://cran.ma.imperial.ac.uk/bin/linux/ubuntu/

re- installing R linux ubuntu: unmet dependencies R

I used aptitude install to install a package, Ubuntu 11.10 oneiric, that apparently I couldn't install because of dependencies. I removed a couple of more libraries while doing it. I uninstalled Rstudio but still can't install R on my machine. I'm on ubuntu and this is what I get while running
sudo apt-get install r-base
The following packages have unmet dependencies:
r-base : Depends: r-base-core (>= 2.15.3-1quantal0) but it is not going to be installed
Depends: r-recommended (= 2.15.3-1quantal0) but it is not going to be installed
Recommends: r-base-html but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
any ideas how to start from scratch and get R running again?
More of the Error log:
The following packages have unmet dependencies r-base-core : Depends: libblas3 but it is not installable or libblas.so.3 but it is not installable or libatlas3-base but it is not installable Depends: libc6 (>= 2.15) but 2.13-20ubuntu5.3 is to be installed Depends: liblapack3 but it is not installable or liblapack.so.3 but it is not installable or libatlas3-base but it is not installable Depends: liblzma5 (>= 5.1.1alpha+20120614) but it is not installable –
Try this
If you have added a line from new ubuntu repository to /etc/apt/sources.list, erase the line.
Then, run the commands
sudo add-apt-repository ppa:marutter/rrutter
sudo apt-get update
sudo apt-get upgrade
It worked for me, the answer comes from here
http://r.789695.n4.nabble.com/Upgrading-on-Ubuntu-from-2-11-1-to-2-15-1-td4636965.html
Uninstall previous R installation:
sudo R --no-save
pkgList <- installed.packages(priority='NA')
remove.packages(pkgList)
q()
sudo apt-get remove --purge r-cran* r-base*
Follow instructions (for R part) from:
How to install R, JGR and Deducer in Ubuntu
To list what you installed with aptitude type the following
xyz#sxyzcom~$ sudo apt-get remove
This should list what remains of your R install and possibly anything else missing dependencies Then you can run
xyz#sxyzcom~$ sudo apt-get autoremove
and that should get you back to square one.
If you are facing problems regarding Broken packages then first of all remove that package by first checking dependencies and then forcefully remove that package, and don't ever forget to reboot when you do make enormous changes in your system. To remove that package use these shell commands
$ sudo su
Then Enter your password
# apt-cache rdepends package-name
# apt-get --purge remove --force package-name
Use these shell commands
# apt-get clean
# apt-get autoclean
# apt-get update
# apt-get upgrade
# apt-get dist-upgrade
# reboot
This worked for me, Try this, I believe this will fix all your problems, Good luck.
If you want to remove the package forcefully,you can do
sudo dpkg --remove --force-remove-reinstreq package_name
and then
sudo apt-get update

Resources