How to Install Python on Windows (Environment Set-up)

Visit the link https://www.python.org/downloads/ to download the latest release of Python. Today , we will install Python 3.8.6 on our Window OS.
1 min read

 How to Install Python (Environment Set-up)

In order to become Python developer, the first step is to learn how to install or update Python on a local machine or computer. In this tutorial, we will discuss the installation of Python on various operating systems.

Installation on Windows

Visit the link https://www.python.org/downloads/ to download the latest release of Python. In this process, we will install Python 3.8.6 on our Windows operating system. When we click on the above link, it will bring us the following page.

Step - 1: Select the Python's version to download.

Click on the download button.

Python Environment Set-up

Step - 2: Click on the Install Now

Double-click the executable file, which is downloaded; the following window will open. Select Customize installation and proceed. Click on the Add Path check box, it will set the Python path automatically.

Python Environment Set-up

We can also click on the customize installation to choose desired location and features. Other important thing is install launcher for the all user must be checked.

Step - 3 Installation in Process

Python Environment Set-up

Now, try to run python on the command prompt. Type the command python -version in case of python3.

Python Environment Set-up

We are ready to work with the Python.

Installation on Mac

To install python3 on MacOS, visit the link https://coderpad.blogspot.com/2022/11/how-to-install-python3-on-macos.html and follow the instructions given in the tutorial.

Installation on CentOS

To install Python3 on CentOS, visit the link https://coderpad.blogspot.com/2022/11/how-to-install-python-3-on-centos.html and follow the instructions given in the tutorial.

Installation on Ubuntu

To install Python3 on Ubuntu, visit the link https://coderpad.blogspot.com/2022/11/how-to-install-python-on-ubuntu-2004-lts.html and follow the instructions given in the tutorial.

Men' fashion , Dating Tips , Relationship Advice

You may like these posts

  • How to Install Python 3 on CentOS Introduction Python is a high level, dynamic, general purpose language. It was developed by Guido Van Rossum in 1991. Python's syntax allows dev…
  • In the previous tutorial on Basic Data Types in Python, you saw how values of various Python data types can be created. But so far, all the values shown have been literal or c…
  •  How to Install Python (Environment Set-up) In order to become Python developer, the first step is to learn how to install or update Python on a local machine or computer. I…
  • How to Install Python3 on MacOS Introduction Python is a high level, dynamic, general purpose language. It was developed by Guido Van Rossum in 1991. Python's syntax allows deve…
  • How to install Python on Ubuntu 20.04 LTS? Introduction Python is a high level, dynamic and general purpose programming language. It was designed and developed by Python Software…
  • How to Read files in Python? To read a file in Python, you can use the built-in open() function to open the file, and then use the .read() method to read its contents. For exa…

Post a Comment