3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Rstudioの環境をきちんと構築しようとしたら意外と面倒だったメモ

Posted at

#君は誰?
「condaって何?」レベルの初心者です

#やりたかったこと
AnacondaからRStudioを起動できるようにしたかった。

#理由
RとPython、その他ライブラリを手当たり次第にインストールした結果、Pythonが3つ存在するなど環境が滅茶苦茶なことになっていた。こんな感じである。

Win
┣Python
┣R
┣Anaconda
┃┣JupyterNotebook
┃┗Python
┗Rstudio
 ┗R
  ┗dplyr等
WSL
┣Python
┗R

躓くたびにライブラリやワークスペースを確認することすら億劫。なのでスッキリさせることにした。こんな感じに。

Win
┗Anaconda
 ┣JupyterNotebook
 ┃┗Python
 ┗Rstudio
  ┗R
   ┗dplyr等

#躓いた所
GUIではAnacondaにRStudioをインストールできなかった。

困ったときはエラーメッセージでググりましょう。そのエラーメッセージが無いんですが…?
途方に暮れて”Anaconda Rstudio インストールできない”などで検索した結果、以下のページがヒットした。

https://amazing-quest.com/2019/05/18/anaconda%E3%81%8B%E3%82%89rstudio%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB/
https://www.guru99.com/download-install-r-rstudio.html

英語サイトの指示通り、AnacondaPrompt上でcondaコマンドからrとrstudioをインストールすることで概ね解決した。有難うございます。すんなり行かなかった所を以下補足。

#conda install を1回実行するだけではインストールが始まらない。
2回セットで実行したら始まった。理由は不明。

#ライブラリのDLがしばしば停まったり、スキップされたりする。
Ctrl+C、またはEnterキーを押すと進むことが有る。
スキップされたライブラリが有る場合、最後に

Proceed([y]/n)?

と尋ねられるので、 n を入力する。

#rstudioインストール時にcondaが諦める
https://qiita.com/jordi/items/cd974b668e7ecf312543
に従い、

conda update

を実行した後、

conda install -c r rstudio

を実行。
updateとinstallを3ループ程繰り返した結果、rstudioがインストールされた。

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?