LoginSignup
2
6

More than 3 years have passed since last update.

JupyterLabの環境を整える

Last updated at Posted at 2019-10-19

JupyterLabをインストールする(pip)

$ sudo pip install jupyterlab
$ sudo pip3 install jupyterlab

JupyterLabを実行する

$ jupyter lab

JupyterLabでRを使えるようにする

まず、devtoolsパッケージをRにインストールします。

R
> install.packages("devtools")

次に、devtoolsでGithubからIRkernelをインストールします。

R
> devtools::install_github("IRkernel/IRkernel")

最後に、IRkernelとJupyterLabを繋げます。

R
> IRkernel::installspec()
2
6
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
2
6