0% found this document useful (0 votes)
1 views2 pages

Python Installation

This document provides a step-by-step guide to download and install Python on a computer. It includes instructions for verifying the installation and testing Python in interactive mode. Key steps involve downloading from the official site, running the installer, and checking the version in Command Prompt.

Uploaded by

190804pn
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views2 pages

Python Installation

This document provides a step-by-step guide to download and install Python on a computer. It includes instructions for verifying the installation and testing Python in interactive mode. Key steps involve downloading from the official site, running the installer, and checking the version in Command Prompt.

Uploaded by

190804pn
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

✅ Step 1: Download Python

1. Open your browser (e.g., Chrome).

2. Go to the official Python download page:


👉 [Link]

3. Click on the “Downloads” tab.

4. Click the yellow button “Download Python 3.x.x” (latest version).

✅ Step 2: Run the Installer

1. Locate the downloaded file (usually in your Downloads folder), e.g., python-3.13.5-
[Link].

2. Double-click the file to open the installer.

✅ Step 3: Important Installation Settings

1. Check the box → ✅ Add Python 3.x to PATH

2. Click the button → 🟩 Install Now

✅ Step 4: Finish Installation

1. Wait for installation to complete (takes a few minutes).

2. When it finishes, you’ll see “Setup was successful.”

3. (Optional) Click “Disable path length limit” if prompted.

4. Click Close.

✅ Step 5: Verify Installation

1. Press Windows + R, type cmd, and press Enter.

2. In the Command Prompt, type:

bash

python --version

or

bash

py –version

3. You should see something like:


nginx

Python 3.13.5

✅ Step 6: Test Python

1. In the same Command Prompt, type:

python

2. You’ll enter Python interactive mode:

python-repl

>>> print("Hello, Python!")

Hello, Python!

3. Type exit() and press Enter to quit.

You might also like