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

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.

Related

Install an older version of a package on Atom Editor

How can I install older versions of a package on Atom Editor? In this case, I'm trying to install an older version of Remote-FTP, and there are older versions of the package here, but no way to specify which version to choose when you install it. Can you help?
From the Atom docs on Packages:
You can also install packages by using the apm install command:
apm install <package_name> to install the latest version.
apm install <package_name>#<package_version> to install a specific version.
For example apm install emmet#0.1.5 installs the 0.1.5 release of the Emmet package.

Every time I try to install a new version of R, the older version is installed. What should I do?

I previously installed the 3.6.3 version of R on my ubuntu, now I remove that version and try to reinstall the R, But the previous version is installed again.
I try by this command:
sudo apt install r-base
How can I install the new version?
Thanks for any help

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

How to configure and build lzma on CentOS 6?

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

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

Resources