最近、パーソナルコンピューター(Windows 8)にR Studio(バージョン0.99.892)をインストールし、特に次のパッケージをインストールしようとしています。ggplot2; dplyr; rmarkdown; tidyr。
RもRStudioも、これらのパッケージをインストールすることはできません。パッケージをインストールしようとするたびに、この投稿の下部に含まれている一連の警告が表示されます。
Install.packagesコマンドと組み込みのパッケージインストールツールを使用しました。私はいくつかの異なるミラーを試しました。
私は公立大学のインターネットソース、私自身のプライベートインターネットソース、および電話テザーを試しました。 VPN経由で接続しようとしました。 R StudioをWindowsファイアウォールの例外リストに追加し、Windowsファイアウォールを完全に無効にしました。他のファイアウォールを実行していません。
グローバルオプションの[パッケージ]タブでさまざまな接続オプションを切り替えました。
ブラウザでURLにアクセスできます。
RStudioからの警告は次のとおりです。
> install.packages("devtools")
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
unable to access index for repository https://cran.fhcrc.org/src/contrib:
cannot open URL 'https://cran.fhcrc.org/src/contrib/PACKAGES'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/src/contrib:
cannot open URL 'http://www.stats.ox.ac.uk/pub/RWin/src/contrib/PACKAGES'
Installing package into ‘C:/Users/Nikhailovich/Documents/R/win-library/3.2’
(as ‘lib’ is unspecified)
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
unable to access index for repository https://cran.fhcrc.org/src/contrib:
cannot open URL 'https://cran.fhcrc.org/src/contrib/PACKAGES'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/src/contrib:
cannot open URL 'http://www.stats.ox.ac.uk/pub/RWin/src/contrib/PACKAGES'
Warning in install.packages :
package ‘devtools’ is not available (for R version 3.2.3)
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
unable to access index for repository https://cran.fhcrc.org/bin/windows/contrib/3.2:
cannot open URL 'https://cran.fhcrc.org/bin/windows/contrib/3.2/PACKAGES'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning in install.packages :
unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/3.2:
cannot open URL 'http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/3.2/PACKAGES'
R(3.2.3)からの警告は次のとおりです。
> install.packages("ggplot2")
Installing package into ‘C:/Users/Nikhailovich/Documents/R/win-library/3.2’
(as ‘lib’ is unspecified)
--- Please select a CRAN mirror for use in this session ---
Error in download.file(url, destfile = f, quiet = TRUE) :
cannot open URL 'https://cran.r-project.org/CRAN_mirrors.csv'
In addition: Warning message:
In download.file(url, destfile = f, quiet = TRUE) :
InternetOpenUrl failed: 'The server name or address could not be resolved'
Warning: unable to access index for repository https://dirichlet.mat.puc.cl/src/contrib:
cannot open URL 'https://dirichlet.mat.puc.cl/src/contrib/PACKAGES'
Warning: unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/src/contrib:
cannot open URL 'http://www.stats.ox.ac.uk/pub/RWin/src/contrib/PACKAGES'
Warning: unable to access index for repository https://dirichlet.mat.puc.cl/bin/windows/contrib/3.2:
cannot open URL 'https://dirichlet.mat.puc.cl/bin/windows/contrib/3.2/PACKAGES'
Warning: unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/3.2:
cannot open URL 'http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/3.2/PACKAGES'
Warning message:
package ‘ggplot2’ is not available (for R version 3.2.3)
RおよびRStudioでのパッケージのインストールに関するスタック交換の投稿がいくつかありますが、特定の状況に対応するものを見つけることができませんでした。何が起こっているのかを知っている人に事前に感謝します
次のコマンドを実行します。
options(repos="https://CRAN.R-project.org")
その後、install.packagesを試してください。動作するはずです。システムでテスト済み。
これは以前私に起こりました。場所を明示的に指定してみてください。
install.packages("devtools", repos="https://cran.rstudio.com/")
引数_repos=
_を指定してinstall.packages()
関数を使用する場合は、実際に場所を指定できますが、パッケージをダウンロードするたびに使用されるお気に入りのリポジトリを選択することもできます。
_ options(repos="my_favorite_CRAN_mirror")
_
CRAN Webサイト で、使用可能なすべてのミラーのリストを確認できます。最寄りのCRANリポジトリのアドレスをコピーして貼り付けてください。
このステップの後、install.packages('ggplot2')
を再試行できるはずです。
次のコードを試してください。
install.packages("ggbiplot",dependencies = TRUE, repos = 'http://cran.rstudio.com/')
エラーのパッケージをインストールするのに役立ちます:
このバージョンではパッケージは利用できません
パッケージdplyr
、tidyr
パッケージをインストールしようとしたときに、同様のエラーが発生していました。 R.version
を確認し、ベースRの新しいバージョンをダウンロードすることで問題を解決しました。(3.3.3)
Rターミナルで次のコマンドを実行します-options(repos = "https://CRAN.R-project.org")then- use-install.packages( 'library')
これを試して...
ツール->グローバルオプション->パッケージ
「プライマリCRANリポジトリ」をhtppsの場所に変更します
この方法で問題が解決しました