High-quality close-up of a Windows logo key on a black plastic keyboard.

Table of Contents

So you’ve decided to start your programming journey, or maybe you’re just trying to follow along with a tutorial, and you hit the very first wall — getting Python installed on your Windows machine. Trust me, we’ve all been there. It looks simple, but there are a few things that can trip you up if you don’t know what to watch out for.

 

Let’s fix that. Here’s a clean, no-fluff guide to installing Python on Windows.

First Things First — What Are We Installing??

Python is a programming language, and to run Python programs on your computer, you need its interpreter installed. Think of it like this — you’ve written a recipe (your code), but you need a chef (the Python interpreter) to actually cook it (execute it). Without the interpreter, your computer simply doesn’t know what to do with a .py file.

Now let’s get it on your machine.

Step 1 — Go to the Official Python Website

Open your browser and go to python.org. Yes, the official website only. Do not download Python from random third-party sites — you don’t want bundled junk on your machine. 

Once you land on the homepage, you’ll see a big yellow “Download Python” button. It automatically detects your OS and shows you the latest stable version.

Click it.

The installer will download to your machine.

Step 2 — Run the Installer (Don't Skip This Checkbox!

Open the downloaded .exe file. You’ll see an installation window pop up. Now here’s the part that trips up almost every beginner:

At the bottom of the window, there’s a checkbox that says — “Add Python to PATH”. Check it. Tick it. Enable it. Whatever you want to call it, just make sure it’s checked before you click anything else.

Why?

Because without this, your computer won’t be able to find Python when you try to run it from the command line. And then you’ll be googling ‘python is not recognized as an internal or external command’ at 2am. Been there. Not fun.

Step 3 — Click 'Install Now'

After checking that PATH box, just click “Install Now”. Windows might ask for admin permissions — just allow it. The installation usually takes under a minute. Go grab some water

Step 4 — Verify the Installation

Once done, let’s make sure Python actually installed correctly. Open your Command Prompt — press Windows + R, type cmd, hit Enter.

Now type this and hit Enter:

				
					python --version
				
			

You should see something like Python 3.x.x. If you do — congratulations, Python is installed and ready to go!

 

If it throws an error, it’s almost certainly the PATH issue from Step 2. Don’t panic — just re-run the installer, and this time make sure that checkbox is ticked.

Step 5 — Write Your First Line of Python

This is the fun part. In the same Command Prompt, type:

				
					python
				
			

This launches Python’s interactive mode. Now type:

				
					print("Hello, World!")
				
			

Note: I don’t know why everyone types hello world, but it is there in every book, so good luck starting with the same or anything you want. 

It’s a free world.

Hit Enter, and your screen should proudly display:

				
					Hello, World!
				
			

You just ran your first Python program. That’s it. That’s the beginning 🙂

A Quick Recap

  • Download Python from python.org only
  • Check the ‘Add Python to PATH’ box before installing
  • Verify using python –version in Command Prompt
  • Run python and test with print(“Hello, World!”)

And that’s a wrap on getting Python set up on Windows, congrats, you did it. Now go and take a 30 min break to refresh your mind and do something else you want. See you in next post !!!