install jupyter notebook to windows 10/ windows 11

1. Install python 3

  1. Download latest version of python from https://www.python.org/downloads/
  2. 2) install python and check your installation by typing following command in CMD as Administrator privileged

2. Install pip

Check if Python is installed

Run the following command to test if python is installed or not. If not  python –version

If it is installed, You will see something like this:Python 3.10.0

Download and Install pip

The PIP can be downloaded and installed using the command line by going through the following steps:

Method 1: Using cURL in Python

Curl is a UNIX command that is used to send the PUT, GET, and POST requests to a URL. This tool is utilized for downloading files, testing REST APIs, etc.

Step 1: Open the cmd terminal 

Step 2: In python, a curl is a tool for transferring data requests to and from a server. Use the following command to request:curl https://bootstrap.pypa.io/get-pip.py -o get-pip.pypython get-pip.py

3. Install jupyter notebook

  1. After installation on pip in python run the following command in cmd prompt
  2. python -m pip install Jupyter
  3. restart the pc
  4. Now open the Jupyter by typing the following command in RUN command
  5. Jupyter notebook
  6. It will opens in browser

4. Install numpy with pip

  1. pip install numpy

5. Install pandas with pip

  1. Installing from PyPI
  2. pandas can be installed via pip from PyPI.pip install pandas
  3. Note
  4. You must have pip>=19.3 to install from PyPI.

Leave a comment