0
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 3 years have passed since last update.

Jupyter notebook 上で Rを使えるようにする

Posted at

Jupyter notebook 上でRを使えるように環境設定を行うための備忘録

環境

macOS Catelina

Rをインストール

この R for macOSからページ左側にあるR-3.6.3.pkg(本記事執筆時の最新版)を押してRをインストール

Jupyter notebook 上でRを使えるようにする

以下をターミナル上で

ターミナル
R

を入力しRのインタプリタを起動.
以下を入力し必要なパッケージをダウンロードする

R
> install.packages(c('repr', 'IRdisplay', 'evaluate', 'crayon', 'pbdZMQ', 'devtools', 'uuid', 'digest'))
> install.packages('IRkernel')
> IRkernel::installspec()

ダウンロード終了後

R
> quit()

でRのインタプリタを終了.
ターミナルからjupyter notebookを開く,

ターミナル
jupyter notebook

するとjupyter notebookのNewからRを使えるようになる.
スクリーンショット 2020-04-09 22.36.00.png

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