Python Installation
Python installation is simple and takes only a few minutes. Follow the steps below carefully.
Step 1: Visit Python Official Website
Open your browser and visit the official Python website:
https://www.python.org
Always download Python from the official website for security and latest updates.
Step 2: Download Python
Click on the Downloads section and download the latest Python version for Windows.
Recommended Version: Python 3.x
Step 3: Run Installer
After downloading, double-click the installer file to start installation.
Step 4: Add Python to PATH
Before clicking Install Now, make sure you enable:
✔ Add Python to PATH
This allows Python commands to work from Command Prompt.
Step 5: Click Install Now
Click the Install Now button and wait for installation to complete.
Step 6: Verify Installation
Open Command Prompt and type:
python --version
If Python is installed correctly, you will see the installed Python version.
Your First Python Program
Open IDLE or any code editor and write:
print("Hello World")
Save and run the file to see the output.
Conclusion
Congratulations! Python is now successfully installed on your computer. You are ready to start learning Python programming.