1
1

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のバージョンアップ時に旧バージョンのライブラリを全インストール

Posted at

OSのアップグレードをした際に R のバージョンが知らないうちに上がることがあります.
その後,気づかずに古いRプログラムを実行すると,Rの新バージョン用のライブラリが入っておらず,改めてライブラリのインストール作業を始めたりすることがあります.
そんなことになる前に,以下のスクリプトを実行しておくと便利です.

R Ver. 4.2 から 4.3 にアップデートした場合:

liba <- dir("~/R/x86_64-pc-linux-gnu-library/4.2/");
libb <- dir("~/R/x86_64-pc-linux-gnu-library/4.3/");

for (x in setdiff(liba, libb)) {
  install.packages(x);
}
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?