×

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

Anytree Python

Python's anytree module is frequently used within data science-related software. Anytree has a Tolerant License, a Construct File that is public, no errors, no risks, and excellent support. One may...

3 minutes read.

Python Set union() method

Python Set union() method The set.union() method in Python returns a set that contains all items from the original set and all items from the specified sets. Syntax set.union(set1, set2...) Parameter set1- This parameter represents the first set...

2 minutes read.

How to slice a list in python

When working with lists, we face situations where we may need a part of the list from one index to the other. Slicing is one of the simpler ways to...

5 minutes read.

Difference between Mutable and Immutable Objects

Difference between Mutable and Immutable Objects As we all know that Python is an object-oriented programming language. Object-oriented programming approach is based on the objects and the classes’ stores the data...

4 minutes read.

Python String startswith() method

Python String startswith() method The string.startswith() method in Python returns a boolean value ‘True’ if the given string starts with the prefix, otherwise it returns False. Syntax startswith(prefix[, start[, end]]) Parameter prefix: This parameter signifies the value to check. start(optional):...

1 minute read.

Python Variables

Variables are one of the most important terms we should be familiar with if we want to be good programmers. In simpler words, we use variables to store a value....

4 minutes read.

Method Overloading in Python

Overloading is a capability of a method and operator to behave differently according to the nature of parameters. Overloading is popular because it provides a good number of advantages: Reusability of code.Reduces...

3 minutes read.

Operator Module In Python

Introduction The operator module is used for performing operations using methods rather than utilizing operators in Python code. The operator module provides several methods for performing the operations.  The operator module contains...

7 minutes read.

Python String rindex() method

Python String rindex() method The string. rindex() method in Python returns the highest index of the substring inside the string (if found). If the substring is not found, it raises an...

2 minutes read.

Python Image Processing

What is an Image? Images are the pictures that will define the world, and it has their own story, and consists of information about them and these are useful in many...

9 minutes read.

Python program to find the greatest among two numbers

Python program to find the greatest among two numbers We have many approaches to get the largest number among the two numbers, and here we will discuss a few of them....

2 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.

PyShark in Python

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....

4 minutes read.

Python Queue

Python Queue There are various day to day activities where we find ourselves engaged with queues. Whether it is waiting in toll tax lane or standing on the billing counter for...

7 minutes read.

Difference Between Python and Scala

What is Python? Python is a high-level general-purpose interpreted programing language. It is used for multi general-purpose work such as language construct as well as its object-oriented approach aims to help...

4 minutes read.

Python String expandtabs() method

Python String expandtabs() method The string.expandtabs() method in Python returns a copy of the string where all tab characters are expanded using spaces. Syntax String.expandtabs([tabsize]) Parameter tabsize: This parameter specifies the number of characters to...

1 minute read.

Best books for NLP with Python

NLP NLP – Natural language processing Computers were created to make the life of mankind easier. But computers cannot understand human language. Instead, they interact with numbers to perform the tasks allotted...

12 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.

Spyder (32-bit) - Free download

Spyder is a free and open-source scientific environment created by and for Python engineers, scientists, and data analysts. It is a robust scientific environment created in Python by and for...

3 minutes read.

XXhash Python

Python: Python programming language is one of the most used programming languages, as it is used widely in the field of software and data analysis, web development, etc. It is said...

6 minutes read.