The Jupyter Notebook is an open source web application that works as an interactive computer environment that allows you to create and share documents that contain live codes, equations, interactive widgets, formulas, graphics, images, videos and narrative texts. Jupyter Notebooks are made up of cells containing executable code, Author narrative text using the Markdown and more. It is saved .ipynb extension and easily shared in JSON format .
"Jupyter" is a acronym meaning Julia, Python, and R.
Ideal for scientific research, academic or professional activities. For example:
It is strongly recommended to follow the following steps:
Jupyter Notebook executes code in many programming languages, but Python is required for its installation.
1° Download Anaconda’s latest Python 3 version. https://www.anaconda.com/download/
2° Install the version of Anaconda which you downloaded, Follow the instructions of "How to Install ANACONDA" on the download page.
3° To Run the Notebook, run the following command at the Terminal (Mac/Linux) or Command Prompt (Windows):
jupyter notebook
The previous instruction Starts the Notebook Server first and then the Notebook is opened in your browser.
Information about the Notebook Server in your Terminal
The Notebook opens in your browser, and shows Notebook Dashboard, which will show a list of the Notebooks, files, and subdirectories in the directory where the Notebook Server was started.
Creating a new Notebook, click on the "New" button (indicated with the red arrow). Select option Python 3 to open a new Jupyter Notebook for Python (indicated with the blue arrow).
The Notebook is created and show a first empty Cell is already available(indicated with the red arrow). This Cell is of type Code and you can start typing in Python code directly. Executing Code in this Cell can be done by clicking on the Run Cell button (indicated with the green arrow).
Project Jupyter website:
https://jupyter.org/
Documentation for Project Jupyter:
http://jupyter.readthedocs.io/en/latest/index.html
Jupyter Notebook Viewer:
http://nbviewer.jupyter.org/