How to configure and build lzma on CentOS 6? - r

I am trying to configure and build lzma version 5.0.3 or higher on CentOS 6. I try install R version 3.5.2.
./configure --enable-R-shlib
But this error
Checking if lzma version >= 5.0.3... no
I installed lzma version 4.999.

There is no 5.x.x version package available for CentOS 6
They are having beta version at 4.9.9
Click to check
I suggest you to upgrade your CentOS 6 to CentOS 7
And then you will get support in OS to install latest distribution of this and other packages
sudo yum install xz
And also you can go to this link and download it manually and install it us
sudo rpm -i {package}

R 3.5.2 is available in EPEL repository.
Just install it from packages:
yum install epel-release
yum install R

Related

Problem install libraries R Debian 10. How install bigrquery and tidyverse

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

How to install R language version 4 in AWS EMR - Amazon linux 2

We have an AWS EMR cluster. By default it comes with
Amazon Linux version 2
R version 3.4.3 (2017-11-30) -- "Kite-Eating Tree"
I like to install latest R version 4..
Tried following :
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum -y install R
But it doesn't upgrade R version to v4.0. It only offers to upgrade it to 3.4.3-1.amzn2.0.1
Amazon Linux 2 - uses EPEL version 7. EPEL v7 doesn't seem to have R v4.
But EPEL version 8 has R v4
I am planning to install R from source. But like to know if this is a way to install binary.
Is there any option to install latest R binary on AWS Linux 2 ?
Found a way to install the R v4 binary from AWS extras repo
sudo amazon-linux-extras install R4
In future, if some one is hunting for AWS Linux specific software package., this command list the packages that can be installed from AWS extras
amazon-linux-extras list
Reference - Amazon Linux User Guide
Install miniconda https://docs.conda.io/en/latest/miniconda.html
conda install r-base or conda install r-essentials

Unable to install R 3.6.0 on centos

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

How to install git-flow 1.9.1 AVH in Ubuntu 14?

Currently, I'm able to install git-flow using
apt-get install git-flow
But, it's always installing version 1.6.0 AVH Edition.
Please help me install 1.9.0 AVH Edition.
I created a new PPA on Launchpad for git-flow AVH.
http://launchpad.net/~pdoes/+archive/ubuntu/gitflow-avh
It has the latest gitflow version for Ubuntu Precise, Trusty, Wily, and Xenial. I used the original Xenial package for backporting.

‘seewave' install error “'sndfile.h' file not found” (for R 3.2.0 under OSX Yosemite)

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

Resources