r-baseの最新バージョン(2.15.2)をインストールしようとして失敗しました。どうやら、RパッケージRcpp
は私のためにインストールするRバージョン2.14.1用にインストールされません。
以下に表示されるインストール試行を何/どのように/どこで変更するかわかりません。私はubuntu-12.04.1-server-i386を使用していることに注意してください。
現在インストールされているバージョンはRバージョン2.14.1(2011-12-22)です。
$ sudo apt-get install r-base
Reading package lists... Done
Building dependency tree
Reading state information... Done
r-base is already the newest version.
バージョン情報を含めることは役に立ちません:
$ sudo apt-get install r-base=2.15.1-5ubuntu1
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Version '2.15.1-5ubuntu1' for 'r-base' was not found
http://cran.r-project.org/bin/linux/ubuntu/READMEからのCRAN Ubuntuの指示に基づく変更:
に追加
/etc/apt/sources.list
deb http://lib.stat.cmu.edu/R/CRAN/bin/linux/ubuntu quantal/
更新とインストール
$ sudo apt-get update $ sudo apt-get install r-base Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: r-base : Depends: r-base-core (>= 2.15.2-1quantal2) but it is not going to be installed Depends: r-recommended (= 2.15.2-1quantal2) but it is not going to be installed Recommends: r-base-html but it is not going to be installed E: Unable to correct problems, you have held broken packages.
R-base
実際に「最新」バージョンであるかどうかを確認する必要がある場合は、インストール/更新を行います。そうでない場合は、以下にリンクされている回答を参照してください。最新のR
リリースを最新の状態に保ちたい場合は、これらのリリースを使用することをお勧めしsid
ます(ただし、システム全体を基にする場合は注意が必要な場合がありsid
ます)。stackoverflow.com/questions/1401904/...
sudo apt-get upgrade
かsudo apt-get dist-upgrade
?