Project Jupyter
Introduction to Project Jupyter, Jupyter Notebook, and JupyterLab
Table of Contents
Installing Jupyter
Jupyter requires a prequisite of Python version 2.7 or version 3.3 and greater.
The recommended installation method is to use the Anaconda distribution which will install Python and Jupyter.
Running Jupyter Notebook
Run the following command to run Jupyter Notebook
jupyter notebookInstalling JupyterLab
JupyterLab is the next-generation web-based user interface for Project Jupyter.
JupyterLab can be installed using either conda, pip or, pipenv.
conda
conda install -c conda-forge jupyterlabpip
pip install jupyterlabpipenv
pipenv install jupyterlab
pipenv shellRunning JupyterLab
JupyterLab can be run with the following command:
jupyter lab