LoginSignup
0
3

More than 3 years have passed since last update.

Jupyter NotebookでKernelを追加する際のお決まりお作法

Posted at

Jupyter Notebookで新しくKernelを追加する際のPipenvのお決まり作法

これやっておけば基本問題ない。毎回忘れて調べてしまって時間が無駄なので備忘。コピペでおk

--python 3.7 は必要なpythonバージョン
--name はjupyterで選べるカーネル名
--display-name はブラウザで表示される任意のカーネル名

pipenv --python 3.7 #3.6
pipenv install ipykernel python-dotenv
pipenv run ipython kernel install --user --name=kernel_name --display-name=kernel_display_name
pipenv shell
0
3
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
3