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

Generate Parenthesis | Intuition + Code | Recursion Tree | Backtracking | Java

Problem Statement: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. Example…

2 months ago

Square Root of Integer

Given an integer A. Compute and return the square root of A. If A is…

1 year ago

Build Array From Permutation

Given a zero-based permutation nums (0-indexed), build an array ans of the same length where…

1 year ago

DSA: Heap

A heap is a specialized tree-based data structure that satisfies the heap property. It is…

1 year ago

DSA: Trie

What is a Trie in DSA? A trie, often known as a prefix tree, is…

1 year ago

Trees: Lowest Common Ancestor

What is the Lowest Common Ancestor? In a tree, the lowest common ancestor (LCA) of…

1 year ago