Everything you need to know about Jupyter Notebook

Published:
Published:

It would be strange to learn Machine Learning and never use Jupyter notebooks. Data scientists LOVE Jupyter notebooks. It's what they use on kaggle and Google Colab. So let's begin.

Install

pip install notebook

Launch

Run the following command from the directory where .ipynb file is

jupyter notebook

On Windows make sure that C:\Users\<user_name>\AppData\Local\Programs\Python\Python38\Scripts\ is in your user environment variables

Updates

pip install jupyter --upgrade
pip install notebook --upgrade
  • Jupyter is metapackage that allows you to install all the Jupyter components in one go.

Dark theme

Set dark theme (more info in this StackOverflow question)

pip install jupyterthemes  jt -l  jt -t theme-name

Try online

Rate this page