I am running R 3.5.2 on Ubuntu 18.4 lts and trying to install car package. I am getting bellow error.
Please just run
sudo apt-get install r-cran-car
as the package has been part of Debian and Ubuntu for a decade and a half (maintained by yours truly). We provide binaries because installation from source is not for everybody.
Related
I'm new working with Debian 10 in Google jupyter notebooks. When I'll want to install library bigrquery or tidyverse I do have problems. i was tried to install libcurl4-openssl-dev sudo apt-get install libcurl4-openssl-dev However these libraries (bigrquery and tidyverse) do not work.
My versions:
R: 4.0.5
libcurl4: libcurl4-openssl-dev is already the newest version (7.64.0-4+deb10u2)
Linux: Debian 10 Google Jupyter notebook AI platafform
Conda 4.10.3
Plase help me.
enter image description here
When I was trying install R on centos 7 using the below command, older version is getting installed instead of latest version(3.6.0).
Command :
yum install R -y
Required suggestions on how to install latest version(3.6.0) of R on Centos 7.
yum --enablerepo=epel-testing install R
source:
https://centos.pkgs.org/7/epel-testing-x86_64/R-3.6.0-1.el7.x86_64.rpm.html
I'm in trouble installing rgdal packages in R. I'm using R version 3.4.3 (2017-11-30) on a computer with:
Distributor ID: Ubuntu
Description: Ubuntu 17.04
Release: 17.04
Codename: zesty
The problem is actually that I can't run on my console.
$ sudo apt-get install libgdal1-dev
It gives me a lot of 'NOT FOUND' I really don't know what to do in this situation.
Please help me.
According to https://wiki.ubuntu.com/ZestyZapus/ReleaseNotes the support for Zesty ended in January. You have to update to Artful, c.f.
https://wiki.ubuntu.com/ArtfulAardvark/ReleaseNotes#Upgrading_from_Ubuntu_17.04.
When updating to R 3.2.0 I had to reinstall seewave.
I managed to install the required packages fftw, tuneR, rgl, and rpanel.
But, when trying to compile seewave I got the message:
stft.c:3:11: fatal error: 'sndfile.h' file not found
On linux it is sufficient to install libsndfile library, for example with
sudo apt-get install libsndfile1-dev
On OS X just do:
brew install libsndfile
Pisca46 - Installing via 'brew install libsndfile' helped.
On CentOS, the package has a different name :
sudo yum install libsndfile-devel
I also had to install the fftw-devel yum package
Trying to install rpy2 on a new Linux installation. Have installed R, ipython, python-devel etc on the system. When executing sudo pip install rpy2 I get an error - "missing python.h". This file is available on my system but not found.
What can I do?