Installing Jupyer Notebook

Installing Jupyer Notebook

in

Getting started

First make sure that you are inside of your anaconda environment

conda acitvate 'name'

Afterwards you can install jupyter notebook with either conda or pip

Anaconda install

conda install -c conda-forge notebook

Pip install

pip install notebook

Congratulations jupyter notebook is now installed 🎉


Password Config

Now you can set your notebook password with the following command

  • Make a easy to remember password
jupyter notebook password


Starting juypter notebook

To start up a notebook session enter in the following command into your terminal

jupyter notebook

A new browser window should’ve been opened automatically pointing to the notebook Interface

If you weren’t automatically directed, go to your browser can enter in the following url

localhost:8888/

If this still didn’t work double check the output in the terminal to see if any url was provided

Expected Terminal Output