First, open a new command prompt (Windows) or terminal (Mac/Linux) on your workstation, and second, execute the following command:
jupyter notebook
If the above command fails, first, you need to install python on your workstation. There are two popular methods to install Python on your workstation.
After installing python using one of the above methods, then we need to installing Jupyter Notebook using either Anaconda or pip.
pip
pip
.pip3 --version
# On Windows
python -m pip install -U pip setuptools
# On OS X or Linux
pip3 install -U pip setuptools
pip
. The process is as follows:python -m pip install jupyter
or if you are using Python 3
python3 -m pip install jupyter
or simply
pip install jupyter
Congratulations, you have installed Jupyter Notebook!
After you have installed the Jupyter Notebook on your computer, you are ready to run the notebook server.
If you have installed Python using Anaconda Distribution, then it includes Python, the Jupyter Notebook, and other commonly used packages for the scientific community.
You can follow the instructions for the installation of Anaconda here for Mac: click here or Windows: click here.
This video: (click here) will guide you to create your first jupyter notebook.