(1)EPELリポジトリの追加
Rは実はyumで一発でインストールすることができます。しかし標準のリポジトリではだめで、EPELレポジトリを指定する必要があります。
(2)EPELを指定したyumの実行
yumでEPELを指定するだけです。あっという間にインストールは完了です。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//yum-prioritiesパッケージのインストール | |
$ yum -y install yum-priorities | |
//EPELリポジトリを追加する | |
$ wget http://ftp-srv2.kddilabs.jp/Linux/distributions/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
$ rpm -ivh epel-release-6-8.noarch.rpm | |
// Rのインストール | |
$ yum --enablerepo=epel -y install R |