On the homepage, click on the Download button. It should automatically detect your operating system.

Important: Check the box that says "Add Python to PATH" before you click Install.
Click Install Now to proceed.
Follow the installation prompts.Windows: Search for "cmd" and open the Command Prompt.
Mac/Linux: Open the Terminal from your applications or by pressing Ctrl + Alt + T.
Type the following command to verify the installation:
python --version
You should see something like:
Python 3.x.x
This confirms that Python is installed correctly.
Open a terminal or command prompt and type python (or python3 on some systems).
You will enter the Python interactive shell. Here, you can start writing Python code directly.
Example:
print("Hello, World!")
Hello, World!
Open a text editor (like Notepad, Sublime Text, VS Code, or any IDE).
Write your Python code:
print("Hello, World!")
Save the file with a .py extension. For example, save it as hello.py.
Run the script:
- Open your terminal or command prompt.
- Navigate to the directory where the file is saved using the cd command.
For example:
cd path/to/your/file
python hello.py
You should see:
Hello, World!
To make coding easier, you can use an Integrated Development Environment (IDE).
Here are some popular choices:
Free version: PyCharm Community Edition
Once installed, you can create a new Python project and start coding in an easy-to-use environment.
Download from: https://code.visualstudio.com/
Install the Python extension for added features like auto-completion and debugging.
Great for data science and quick prototyping.
Install via pip:
pip install notebook
Run it:
jupyter notebook
To extend Python’s functionality, you can install libraries using pip, Python's package manager. For example, to install the popular requests library for making HTTP requests, run:
pip install requests
Once you’re all set up, here’s how you can start learning:
Official Python Docs: https://docs.python.org/3/
Online Courses: Platforms like Coursera, Udemy, and Codecademy offer Python courses.
Interactive Learning: Try websites like https://repl.it for in-browser coding practice.