インストールしたばかりのUbuntu 14.04システムにr-base
をインストールしようとしています。
ただし、次のエラーが表示されます(ここでは、出力の最後の数行のみを示しています)。
0 upgraded, 70 newly installed, 0 to remove and 5 not upgraded.
Need to get 457 kB/71.9 MB of archives.
After this operation, 156 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Err http://in.archive.ubuntu.com/ubuntu/ trusty/universe r-cran-cluster AMD64 1.14.4-1
403 Forbidden [IP: 91.189.88.149 80]
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/universe/c/cluster/r-cran-cluster_1.14.4-1_AMD64.deb 403 Forbidden [IP: 91.189.88.149 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
apt-get update
、apt-get upgrade
、apt-get update --fix-missing
を試しました。不足しているファイルを修正する前に、apt-get update
の最後にいくつかのキーが不足しているという警告が表示されていました。ただし、--fix-missing
を使用してこのエラーを解決しました。ただし、r-base
のインストール中にエラーが発生します。
ソフトウェアセンターを通じて、タイトルと同じエラーが表示されます。パッケージファイルのダウンロードに失敗しました。インターネット接続を確認してください。エラーは次のとおりです。
Error: Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/universe/c/cluster/r-cran-cluster_1.14.4-1_AMD64.deb 403 Forbidden [IP: 91.189.91.26 80]
インターネット接続は問題ありません。ブラウザで上記のリンクを開こうとすると、「アクセスが拒否されました」と表示されます。
どうすればアクセスできますか?または、どこから同じファイルを見つけることができますか?私はUbuntuが初めてです。 403禁じられたエラーの他の問題をいくつか見つけましたが、何も私を助けませんでした。それらは異なる特定のケース(私のようなものではありません)のためでした。
このリンク のdeb
ファイルをdpkg
を使用して試すと、次のような出力が得られます。
darshil@darshil-Lenovo-G580:~/Downloads$ Sudo dpkg -i r-cran-cluster_2.0.4-1trusty0_AMD64.deb
Selecting previously unselected package r-cran-cluster.
(Reading database ... 185096 files and directories currently installed.)
Preparing to unpack r-cran-cluster_2.0.4-1trusty0_AMD64.deb ...
Unpacking r-cran-cluster (2.0.4-1trusty0) ...
dpkg: dependency problems prevent configuration of r-cran-cluster:
r-cran-cluster depends on r-base-core (>= 3.2.5-1trusty0); however:
Package r-base-core is not installed.
r-cran-cluster depends on r-api-3; however:
Package r-api-3 is not installed.
dpkg: error processing package r-cran-cluster (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
r-cran-cluster
私は最終的にそれが私のサービスプロバイダーの問題であることがわかりました。何らかの理由で、私の研究所のネットワークがこの単一のファイルをブロックしていました。そこで、r-base
別のネットワークの端末から(別の場所から)正常に動作しました!
CRANからrをインストールしてください。追加
deb http://cran.rstudio.com/bin/linux/ubuntu trusty/
/etc/apt/sources.list
にキーをアーカイブに追加します
Sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
その後、すべてがOKでなければなりません
Sudo apt-get update
Sudo apt-get install r-base r-recommended rstudio
追伸Ubuntuの新しいバージョンにアップグレードした後、sources.list
のリポジトリを更新することを忘れないでください。 利用可能なバージョンといくつかのセットアップ手順のリスト 。