DEV Community

Dr. Azad Rasul
Dr. Azad Rasul

Posted on

4- How to install and run jupyter notebook platform

To write and execute python codes you can use many platforms such as "jupyter notebook", "Spyder" and "Google Colab". In this learning series we use "jupyter notebook" platform.

The Jupyter Notebook is a free web application for creating and sharing documents that contain live code, equations, visualizations, and narrative text.

Firstly, we activate our environment:

conda activate da35
Enter fullscreen mode Exit fullscreen mode

Then, we install jupyter notebook:

conda install jupyter
Enter fullscreen mode Exit fullscreen mode

Look at the list of installed packaged to confirm jupyter notebook is installed:

conda list
Enter fullscreen mode Exit fullscreen mode

To start running it, inside Anaconda Prompt write:

jupyter notebook
Enter fullscreen mode Exit fullscreen mode

This window should be opened:

Image description

Install a collection of various different notebook extensions for Jupyter:

conda install -c conda-forge jupyter_contrib_nbextensions
Enter fullscreen mode Exit fullscreen mode

In the opened Jupyter Notebook window, click on "Nbextentions", then select any necessary extensions.

Image description

To close jupyter notebook, inside conda mrompt use control and c.

ctrl+c
Enter fullscreen mode Exit fullscreen mode

If you like the content, please SUBSCRIBE to my channel for the future content.

To get full video tutorial and certificate, please, enroll in the course through this link: https://www.udemy.com/course/python-for-researchers/?referralCode=886CCF5C552567F1C4E7

Top comments (0)