いろいろなサイトを参考に、yumコマンドでインストールを試みた私の環境では失敗。
#yum -y install R
実行すると、
エラー: パッケージ: R-core-devel-3.4.3-1.el7.x86_64 (epel) 要求: texinfo-tex ********************************************************************** yum can be configured to try to resolve such errors by temporarily enabling disabled repos and searching for missing dependencies. To enable this functionality please set 'notify_only=0' in /etc/yum/pluginconf.d/search-disabled-repos.conf ********************************************************************** エラー: パッケージ: R-core-devel-3.4.3-1.el7.x86_64 (epel) 要求: texinfo-tex 問題を回避するために --skip-broken を用いることができます。 これらを試行できます: rpm -Va --nofiles --nodigest
texinfo-texのrpmを探してきてインストールした後でも同じエラー。
結局、ソースプログラムをとってきて、マニュアル記載の./configure実行後、makeコマンドで無事、ビルド完了。最初からこちらをすればよかった...
#./configure
#make
注意点としては、tar.gz解凍して生成するソースプログラムの入ったディレクトリがインストール先になるので注意。まあ、ディレクトリごと移動すれば良いのかもしれないけど。