web-dev-qa-db-ja.com

RHEL 6へのRのインストール

私の質問はこれと似ています- RをLinux CentOS 6.3にインストールするときの問題

Epelをインストールしましたが、yum install Rを実行すると、2つの依存関係の問題が発生します-

エラー:パッケージ:R-core-3.0.1-2.el6.x86_64(epel)要件:libjpeg.so.62(LIBJPEG_6.2)(64bit)

エラー:パッケージ:R-core-devel-3.0.1-2.el6.x86_64(epel)要件:texinfo-tex

- http://rpm.pbone.net/index.php3/stat/4/idpl/15993086/dir/scientific_linux_6/com/texinfo-tex-4.13aのrpmファイルを使用してtexinfo-texをインストールしてみました-8.el6.x86_64.rpm.html

ただし、これにより、不足している依存関係の長いツリーが表示されます。 5つの異なるrpmファイルをダウンロードしてインストールしてみましたが、依存関係が欠落しているたびに、これは、依存関係のツリーの1つのブランチにすぎません。私は考えました、もっと良い方法があるはずです。誰か助けてもらえますか?これは私にナッツを運転しています。

編集:私が試みている別のオプションは、ソースからRをビルドすることです。不足しているパッケージを考えると、これが機能するかどうかはわかりません。ただし、現時点では、fortranコンパイラが見つからない(「F77コンパイラが見つかりません」)と表示されています。私はgccをインストールするつもりだと思ってインストールしましたが、どうやらありません。

19
Rohit Pandey

rHEL6.4では

subscription-manager repos-rhel-6-server-optional-rpmsを有効にする

yum install texinfo-tex

rpm -ivh http://mirror.unl.edu/epel/6/x86_64/epel-release-6-8.noarch.rpm

yum install R

乾杯マルテン

9
Marten Vijn

私はまったく同じ問題を抱えており、この問題を解決できるRHEL 6のyumリポジトリーを見つけるために約3時間費やしました。これまでのところ、この依存関係を追加した人は、依存関係を追加した後で実際にインストールしようとしていないようです。これらの依存関係マッピングは、私が見つけたリポジトリのどこにも存在しないようです。

イライラしてこのコマンドを試してみました

yum install texinfo-tex-4.13a-8.el6.x86_64.rpm

そしてそれはうまくいった

    Loaded plugins: rhnplugin, security
This system is receiving updates from RHN Classic or RHN Satellite.
CentALT                                                  |  951 B     00:00     
elrepo                                                   | 2.9 kB     00:00     
epel/metalink                                            |  13 kB     00:00     
epel-testing/metalink                                    |  13 kB     00:00     
mongodb                                                  |  951 B     00:00     
puppetlabs-enterprise-extras                             | 1.9 kB     00:00     
remi                                                     | 2.9 kB     00:00     
rhel-source                                              | 2.5 kB     00:00     
rhel-x86_64-server-6                                     | 1.8 kB     00:00     
rpmforge                                                 | 1.9 kB     00:00     
scl_python27                                             | 2.9 kB     00:00     
scl_Ruby193                                              | 2.9 kB     00:00     
Setting up Install Process
Examining texinfo-tex-4.13a-8.el6.x86_64.rpm: texinfo-tex-4.13a-8.el6.x86_64
Marking texinfo-tex-4.13a-8.el6.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package texinfo-tex.x86_64 0:4.13a-8.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package       Arch     Version         Repository                         Size
================================================================================
Installing:
 texinfo-tex   x86_64   4.13a-8.el6     /texinfo-tex-4.13a-8.el6.x86_64   387 k

Transaction Summary
================================================================================
Install       1 Package(s)

Total size: 387 k
Installed size: 387 k
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : texinfo-tex-4.13a-8.el6.x86_64                               1/1 
  Verifying  : texinfo-tex-4.13a-8.el6.x86_64                               1/1 

Installed:
  texinfo-tex.x86_64 0:4.13a-8.el6                                              

Complete!

# yum install R
Loaded plugins: rhnplugin, security
This system is receiving updates from RHN Classic or RHN Satellite.
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package R.x86_64 0:3.0.1-2.el6 will be installed
--> Processing Dependency: R-devel = 3.0.1-2.el6 for package: R-3.0.1-2.el6.x86_64
--> Running transaction check
---> Package R-devel.x86_64 0:3.0.1-2.el6 will be installed
--> Processing Dependency: R-Java-devel = 3.0.1-2.el6 for package: R-devel-3.0.1-2.el6.x86_64
--> Processing Dependency: R-core-devel = 3.0.1-2.el6 for package: R-devel-3.0.1-2.el6.x86_64
--> Running transaction check
---> Package R-core-devel.x86_64 0:3.0.1-2.el6 will be installed
---> Package R-Java-devel.x86_64 0:3.0.1-2.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package               Arch            Version              Repository     Size
================================================================================
Installing:
 R                     x86_64          3.0.1-2.el6          epel           19 k
Installing for dependencies:
 R-core-devel          x86_64          3.0.1-2.el6          epel           90 k
 R-devel               x86_64          3.0.1-2.el6          epel           19 k
 R-Java-devel          x86_64          3.0.1-2.el6          epel           19 k

Transaction Summary
================================================================================
Install       4 Package(s)

Total download size: 147 k
Installed size: 326 k
Is this ok [y/N]: 
4
relaxed137

6.6 RHEL 64ビットマシンへのRのインストール

多くのページを通過した後、私はこのステップを見つけたので、簡単なステップとして共有すると考えました:

wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

「これはRHELマシンに推奨されるパッケージです。」

sudo yum install tcl

「Tclパッケージには、堅牢な汎用スクリプト言語であるツールコマンド言語が含まれています。このパッケージは、LFS-7.7プラットフォームを使用して正しくビルドおよび動作することがわかっています。このパッケージは、gcc-5コンパイラーを使用して正しくビルドおよび動作することがわかっています。」

Sudo yum clean all

「yumキャッシュをクリーンアップ」

Sudo yum install R

「Rのインストール用」

2
Ashiwn Gupta

これをお試しください

rpm -ivh http://mirror.unl.edu/epel/6/x86_64/epel-release-6-7.noarch.rpm

2つ目は次のとおりです。

#yum install R

ありがとうございます。それでは、お元気で、
アロク

1
linux_fanatic

Sudo yum groupinstall「開発ツール」をお試しください

これにより、すべてのコンパイラを含む開発ツールがインストールされます。私も同じものをインストールしようとしています。ソースから建物を試しました。さて、yumでビルドしようとしています。それがどうなるか見てみましょう

1
user1496110

「私はこれを試しました。「パッケージepel-release-6-8.noarchはすでにインストールされている」と言っていました。」

しかし、有効になっていません...参照: https://bluehatrecord.wordpress.com/2014/10/13/installing-r-on-red-hat-enterprise-linux-6-5/

0

私は同じ問題を抱えていました、そして多くはこれで行き詰まっているようです。依存関係はRedHat Repo [rhel-6-server-optional-rpms]で入手できます。リポジトリを有効にすると、Rがインストールされます。

0
rlgjr