The following steps demonstrate how to start Jupyter and create a new notebook:
- Open a command window on the directory where you want your notebook files stored.
- Start Jupyter by running the following command in the Terminal window:
jupyter notebook
- After a few moments, the notebook will open in your web browser. The notebook starting page is known as the dashboard, and is shown in the following screenshot:
- To create a new notebook, click the New button at the top right and select Python 3 from the menu. The following screenshot shows a newly created notebook:
Code in a notebook is entered in an execution cell, which ...