×

How to Install Python

Python Installation Guide Step by Step

Installing Python is quite simple and easy.

In this tutorial, we will show stepwise procedure to install Python and set up the Python environment in different operating systems.

In order to practice and learn python, installing python setup correctly is the first step. So, let’s get started.

Downloading Python set-up in Windows

Visit the official website of Python. (  python.org ). We can find all the python version and documentation of Python, latest news about Python and many other things.

How to Install Python

We can directly click on the yellow download button. After clicking on this, downloading will start automatically for 64 bit operating system.

If you have 32 bit operating system then, follow the following steps:

Step 1. After we have opened the official website of Python, click on Downloads. Then, we will see following options.

How to Install Python

Step – 2: As we are downloading Python package for windows. So, click on Windows.

Then, this window will be opened.

How to Install Python

On this page we can see Download Windows Installer (32 – bit). Click on this blue link and the downloading will start. We can find the link to this page here(  Link ).

You can download any version you want.

I have downloaded 64 bit version.

Now, let’s see how to install the python package.

Installing Python package in Windows

After downloading is complete we can find the python package in we system.

Its icon should look like shown in the screenshot below.

How to Install Python

Next double click on it and installation window will be opened.

How to Install Python

Make sure you tick both the check points. And then click on Install Now.

Then, the installation will start.

How to Install Python

After the installation is completed, we can check if it’s installed properly by checking the version of our python package through cmd.

Steps to check the version of python.

  1. Open cmd ( command prompt)
  2. Enter – python –version
How to Install Python

Installing Python in Mac

Follow this link to see steps to download and install python on Mac.

Click here

Installing Python in Ubuntu

Follow this link to see step to download and install python in Ubuntu Operating system.

Click here


Related Topics

Python int()

Python int() class The int() class in Python returns an integer object constructed from a number or string x. Syntax class int(x, base=10) Parameter x: This parameter represents a number or a string that can be converted into...

1 minute read.

Front end in python

Python : Python is an object oriented programming language which is highly interpreted and is highly interactive. Python was created by Guido van Rossum in the year 1985 – 1990 .The...

4 minutes read.

Best Database for Python

Database The collection of structured data or information in an organized format in a computer system is known as Database. The data is inserted, deleted, updated, controlled, or manipulated in a...

6 minutes read.

Python bytearray()

Python bytearray() Class The bytearray() class is used to return a bytearray object which is an array of the specified bytes. It gives a mutable sequence of integers in the range 0...

1 minute read.

How to append an Array in Python

A group of objects kept at adjacent memory regions is known as an array. It is a container with a set capacity for a certain number of things, all of...

7 minutes read.

Python Struct

Python Python is an interactive and more accessible language than any other programming language. The python programming language uses a variety of libraries to perform the operations in a faster way....

3 minutes read.

Write Dictionary to CSV in Python

Python is an Object-Oriented high-level language. Python has an English-like syntax, which is very easy to read and write codes. Python is an interpreted language which means that it uses...

4 minutes read.

How to Substring a String in Python

String Unicode characters collection is referred to as a String. It consists of a succession of characters, including alphanumeric and special characters. Substring: Core Concept A substring is a piece of a string....

5 minutes read.

How to print in same line in python

How to Print in the Same Line in Python To print in Python, we use the print () function and the syntax of print () goes like this: print (values, sep =...

3 minutes read.

Scraping data in python

Data scraping is a technique in which one program extracts a set of data from the output of another program. Web scraping is the most common application of this technique....

6 minutes read.

Python String rstrip() method

Python String rstrip() method The string.rstrip() method in Python returns a copy of the string with trailing characters removed. Syntax string.rstrip([chars]) Parameter chars:  This argument represents a string specifying the set of characters to be...

1 minute read.

Python Bubble Sort

Bubble sort is one of the techniques used to sort the elements in lists in a certain order, either in ascending or descending order. It is called Bubble sort because...

4 minutes read.

Python program to print array element present at even position

Python program to print array element present at even position In this program, we'll see a Python program that prints the elements of an array that are in even positions. We...

1 minute read.

How to comment multiple lines in python?

How to comment multiple lines in python There are two qualities that come up with every good and successful programmer- i) Indenting the code ii) Using comments in the code Let us see how...

4 minutes read.

Python Strong Number

Strong Number- Logic Divide each of the number's digits into separate units to determine if it is a strong number or not.The factorial of each digit must then be determined. The...

5 minutes read.

Raise Exception in Python

Most of the programmers/developers create large programs to solve complex tasks in Python. The code can be of 1000 lines and even more based on the need of the problem....

5 minutes read.

How to change the names of Columns in Python

Introduction To play with huge amounts of data, in Python we require a tool. The tool which is available in Python is Pandas. Pandas is an open-source library. It is used...

3 minutes read.

CSV Write in Python

What is meant by CSV? CSV stands for Comma Separated Values. The name itself defines its purpose. CSV arranges the data in the form of tables and stores the organized data in...

3 minutes read.

Python math.cos and math.acos function

Math.cos() function In Python, the Math module is used for performing the mathematical operations. It includes the math.cos() function that is used for obtaining the cosine value of an angle in...

3 minutes read.

Difference between python list and tuple

In this tutorial, we will understand the key differences between python lists and tuples in python. Firstly, let us see the similarities between Lists and Tuples. Both are two data types...

4 minutes read.