Installing Python And Jupyter Notebook

Installing Python And Jupyter Notebook


Welcome Readers,

In this post I'll be showing you how to install Python and Jupyter Notebook.


Installing Python

Before installing Python, user needs to check whether Python is installed in his/her machine or not.
  • In Windows OS, open command prompt. In Linux or macOS, open Terminal.
  • Type 'python3'
If Python3 is installed it with show something like this screenshot and user can jump directly on the install Jupyter Notebook.

Note that most of the latest Linux distros comes with pre-installed Python2 and Python3.


-terminal in Ubuntu 16.04-


Otherwise user will get an error.

If you do not have installed Python3 in the machine, go to the https://www.python.org/  and from download section download the Python package as per your OS and machine architecture.

Just remember to tick add to path in the first step of Python installer window.

remember to check 'add to PATH'

Complete all the installation with default settings.

Installing Jupyter Notebook

Installing Jupyter notebook is very easy.

Make sure your machine is connected to the internet.

  • Again in Windows OS, open command prompt. In Linux or macOS, open Terminal. 
Type the following commands:
python3 -m pip install --upgrade pip
python3 -m pip install jupyter
 

 
 
 
 
 
 And now you are done!!!

To launch Jupyter Notebook, launch command prompt or terminal in the respective folder and type jupyter notebook.

You are good to go!

<share my blog>

Comments

Popular posts from this blog

Getting Started with Jupyter Notebook

Introduction To Python