私は通常、パッケージ更新などのためにcranにアクセスするために、setInternet2(use=TRUE)
オプションを設定しなければなりません。しかし、win explorerをバージョン8に更新した後、これは動かないようです。これは、setInternet2オプションが呼び出された場合と実行されなかった場合の両方でe1071をインストールしようとした後の出力です。setInternet2はウィンドウを接続できません
これを修正することができますか?
> install.packages("e1071")
Installing package(s) into ‘P:/R prg/R-2.13.1/library’
(as ‘lib’ is unspecified)
Warning in install.packages :
unable to connect to 'cran.ma.imperial.ac.uk' on port 80.
Warning in install.packages :
unable to connect to 'cran.ma.imperial.ac.uk' on port 80.
Warning in install.packages :
unable to access index for repository http://cran.ma.imperial.ac.uk/bin/windows/contrib/2.13
Warning in install.packages :
unable to connect to 'www.stats.ox.ac.uk' on port 80.
Warning in install.packages :
unable to connect to 'www.stats.ox.ac.uk' on port 80.
Warning in install.packages :
unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/2.13
Warning in install.packages :
package ‘e1071’ is not available (for R version 2.13.1)
> setInternet2(use=TRUE)
> install.packages("e1071")
Installing package(s) into ‘P:/R prg/R-2.13.1/library’
(as ‘lib’ is unspecified)
Warning in install.packages :
InternetOpenUrl failed: 'A connection with the server could not be established'
Warning in install.packages :
InternetOpenUrl failed: 'A connection with the server could not be established'
Warning in install.packages :
unable to access index for repository http://cran.ma.imperial.ac.uk/bin/windows/contrib/2.13
Warning in install.packages :
InternetOpenUrl failed: 'A connection with the server could not be established'
Warning in install.packages :
InternetOpenUrl failed: 'A connection with the server could not be established'
Warning in install.packages :
unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/2.13
Warning in install.packages :
package ‘e1071’ is not available (for R version 2.13.1)
いつでも手動でダウンロード/インストールできます。 CRANへのアクセス権はありますか? –
私はusbにクルーパッケージをミラーリングしてしまいました。そして、私は明日に働かせるでしょう。ブラウザは仕事中であっても全く問題なく動作します。 – Misha
@Misha RからのWebアクセスの前に 'setInternet2(TRUE)'が実行されていますか? 'R-2.13.0 \ etc \ Rprofile.site'の最初の行に' utils :: setInternet2(TRUE) 'を置いています。それはIE8で私のために働く。 2番目の事:IEでリポジトリディレクトリを開くときに問題はありますか? – Marek