Installing Python
Installing Python means setting up the Python software on your computer so that you can start writing and running programs. It is the first step before running Python programs on your computer. Python installation is simple and beginner-friendly for students .
It is similar to installing an app on your phone before using it, like installing WhatsApp or a game. In real life, installing Python is like setting up a kitchen before cooking—you need all the tools ready before you start preparing food. Once Python is installed, your computer becomes ready to understand and execute your instructions.
After installation, you can open Python and begin writing simple programs like printing messages or solving problems. A student can learn Python concepts even before installing it, but installation is needed to practice coding on a computer.
Installing Python is the first step before running Python programs on your computer.
You can download Python from the official website Python Software Foundation. After downloading, open the installer and follow simple steps like clicking Next. One important step is to check the box that says Add Python to PATH—this helps your computer recognize Python easily.
After installation is complete, you can open Python from your computer and start coding. Python works on different operating systems like Windows, Mac, and Linux, so anyone can use it. Once installed, you are ready to write your first Python program!
python --version → It is a command used to check the installed version.
Practical Example
Like installing a game before playing it, you must install Python before coding.
Simple Installation Steps
- Go to www.python.org
- Click on Download Python
- Open the downloaded file
- Tick Add Python to PATH
- Click Install Now
- Wait for installation to finish
- Click Finish
Detailed Installation Steps
Go to the browser, search Python and open the first link

Click on Downloads and then click the Python version (Example: Python 3.x)

Open the downloaded file

Click on the two check boxes and then click Customize Installation

Select all check boxes and click Next

Click the required check boxes and then click Install

Installation starts

After successful installation, click Close

Open IDLE or Python App After Installing
● After installation, open IDLE (Python Editor) or Python from the Start Menu
● IDLE comes with Python
● You can also use simple editors like Notepad or Visual Studio Code
How to Check if Python is Installed
● Open Command Prompt (Windows) or Terminal (Mac/Linux)
● Type:
python --version
● If Python is installed, it will show the version like Python 3.x
To confirm Python is installed properly, open Command Prompt and type:
python --version

If the version number appears on the screen, Python has been installed successfully.

Steps
- In the Search bar, open Command Prompt
- Type:
python --version
Example
After installing, you can test Python with:
python --version
pip install numpy
After Installation
● Open Python or IDLE
● Type:
print("Hello")
● Click Run → You will see the output
When you click Save As, type the file name like hello.py
Here .py is the special ending (extension) that shows it is a Python file.
In Search bar open IDLE

In Python Shell, write Code press Enter

This confirms Python is working.
➤ Key Points About Installing Python
● Installing Python is the first step before starting coding
● It is easy and quick to install
● Python works on Windows, Mac, and Linux computers
● It is required to run Python programs
● Always download from the official website (python.org) for safety
● Selecting Add Python to PATH is very important for proper setup
➤ Tips
● Always download Python from the official website
● Ask a teacher or parent for help if you are unsure
● Use the latest version of Python
● Start practicing immediately after installation to remember better