Categories: python

Python Installation

Python Installation on Windows involves the following steps to set up the Python environment on a Windows system:

  • Go to python.org/download
  • Download the latest release for Python 3.x for 32-bit or 64-bit depending upon your PC.
  • Open Installer and follow these steps:

Run Executable Installer:

Run the installer. Make sure to check both of the checkboxes at the bottom before clicking Install New.

On clicking Install Now, The installation process starts.

The installation will take a few minutes to complete, and once completed, the following screen will be displayed.

  • Verify Python is installed on Windows:
    • Start the command prompt.
    • Type ‘python’ and enter.
    • If you have successfully installed Python on your Windows, the version you have installed will be displayed.
  • Pip is a powerful package management system for Python software packages. Thus, make sure that you have it installed. Follow the given steps, to verify if pip was installed −
    • Open the command prompt.
    • Enter pip –V to check if pip was installed.
    • The following output appears if pip is installed successfully.

Note: also read about Introduction – Python programming language

Follow Me

Please follow me to read my latest post on programming and technology if you like my post.

https://www.instagram.com/coderz.py/

https://www.facebook.com/coderz.py

Recent Posts

What is object oriented design patterns

A design pattern is a reusable solution to a commonly occurring problem in software design. They…

4 months ago

Factory Method Design Pattern in OODP

Factory Method is a creational design pattern that deals with the object creation. It separates…

4 months ago

Find Intersection of Two Singly Linked Lists

You are given two singly linked lists that intersect at some node. Your task is…

10 months ago

Minimum Cost to Paint Houses with K Colors

A builder plans to construct N houses in a row, where each house can be…

10 months ago

Longest Absolute Path in File System Representation

Find the length of the longest absolute path to a file within the abstracted file…

10 months ago

Efficient Order Log Storage

You manage an e-commerce website and need to keep track of the last N order…

11 months ago