Make the best of Jupyter Notebooks!

Make the best of Jupyter Notebooks!

JupyterLab is the latest web-based interactive development environment for notebooks, code, and data.

https://www.anaconda.com/download

Anaconda software helps you create an environment for many different versions of Python and its versions.

This is the best you could get to store your Python and data science material.

Installing IDE on Windows, Linux and Mac:

\=> https://jupyter.org/

Install JupyterLab with pip:

pip install jupyterlab

Once installed, launch JupyterLab with:

jupyter lab

Homebrew

Homebrew is a package manager for macOS and Linux. You can use it to install Jupyter by running:

brew install jupyterlab

Jupyter Notebook

Install the classic Jupyter Notebook with:

pip install notebook

Jupyter notebooks help you to document your whole assignments or projects in an attractive and educative way.

Jupyter Notebook for documentation:

Cells:-

There are two types of cells in a Jupyter Notebook:

1.Markdown cell

2.Code cell

Markdown cells are used to format the documentation. You can add a Heading, Bold text, Itlalics, attach links and images to your document. It helps to make tables and graphs in the code.