Pipenv's routine when adding a new kernel with Jupyter Notebook
If you do this, there is no basic problem. It's a waste of time because I forget it every time and check it. Copy and paste
--python 3.7 is the required python version --name is the kernel name that can be selected with jupyter --display-name is any kernel name displayed in the browser
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
Recommended Posts