Your cart is currently empty!
How to Install Python on Windows
Python is one of the most popular programming languages around. Whether you want to automate tasks, dive into data science, or build a website, Python is a solid choice. Here’s how to install Python on your Windows computer—quickly and painlessly.
1. Download Python
Go to the official Python website.
- Click the big yellow button that says “Download Python [version number]”.
- If you’re not sure which version to get, the latest one is almost always the right pick.
2. Run the Installer
- Once the file is downloaded, open it.
- IMPORTANT: Check the box that says “Add Python to PATH” at the bottom of the installer window. This step saves you headaches later.
3. Start the Installation
- Click “Install Now”.
- The installer will set up everything you need.
- When it’s done, click “Close.”
4. Verify the Installation
Let’s make sure Python is ready to go.
- Open the Command Prompt.
- (Press
Windows Key + R
, typecmd
, then hit Enter.)
- (Press
- Type this command and press Enter:
python --version
- If you see a version number (like
Python 3.12.2
), you’re all set.
5. (Optional) Install pip Packages
pip
comes with Python by default. To check, run:
pip --version
You’ll see the pip version if it’s installed. You can now install Python packages, like this:
pip install requests
Common Issues
- Python not recognized?
You might have missed the “Add to PATH” step. Reinstall and make sure you check that box. - Multiple versions installed?
Try runningpy
instead ofpython
.
That’s It
You’re ready to write Python code on Windows. Open up IDLE (which installs with Python), or use your favorite code editor. Happy coding!
Tech enthusiast and content creator passionate about making technology simple for everyone. I share practical tips, guides, and reviews on the latest in computers, software, and gadgets. Let’s explore the digital world together!