0
0

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 1 year has passed since last update.

Rの異なるバージョンのインストール

Last updated at Posted at 2022-01-25

はじめに

RStudioがバージョン毎のパッケージを提供しています。
ビルド中にjava関連のエラーが出て詰まったのでこちらで。

環境

  • Dell Optiplex 5060 SFF (2019), core i5 8400, M.2 256GB SSD, 32GB RAM
  • Lubuntu 18.04

特定バージョンのdebのインストール

# ${R_VERSION}は欲しいバージョン
curl -O https://cdn.rstudio.com/r/ubuntu-1804/pkgs/r-${R_VERSION}_1_amd64.deb
sudo apt install ./r-${R_VERSION}_1_amd64.deb

パッケージは/opt/Rにインストールされます。
インストールの確認をします。

/opt/R/${R_VERSION}/bin/R --version

/usr/localにリンクを貼ります。

# /usr/local/binにフォルダを作成
sudo mkdir /usr/local/bin/R /usr/local/bin/Rscript

# シンボリックリンクを貼る
sudo ln -s /opt/R/${R_VERSION}/bin/R /usr/local/bin/R
sudo ln -s /opt/R/${R_VERSION}/bin/Rscript /usr/local/bin/Rscript

# 環境変数の設定。vim ~/.profileで書き込んでもよし
cat <<EOF>> .profile
>export PATH=$PATH:/usr/local/bin/R:/usr/local/bin/Rsctipt

# 更新
source ~/.profile

おわりに

Rの異なるバージョンのインストールを行いました。

参考

RStudio Documentation

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?