Python Install - Windows

Here's the gist on how to handle python on Windows

I'm thinking the majority of you new people will find yourself on this page, and hopefully I can steer you in the right directions!

First things first, lets see if you have python installed. You can do so by opening up command prompt and running the following command:

python --version

If you see a version number that is 3.11 or newer, you're already set, and you can continue with the quick start guide!

If you see something lower than 3.11, you will need to uninstall it. You can do it by searching for "uninstall programs" on your machine, and finding python and going through the uninstall tool.

For those of you that see an error, or just uninstalled a lower version of python. Don't fret, it's easy to install the new version.

But first, a few notes:

  • You don't always want the newest version of python.

  • Python won't update itself if you install a different version, it'll install it as a separate version and this can cause issues.

  • You probably don't need to ever update python.

With those things in mind, I personally recommend you install python 3.11.4 (it's what I used to develop this program).

You can find the installer for it here https://www.python.org/ftp/python/3.11.4/python-3.11.4-amd64.exe

During the installation of it, there's only one thing you need to make sure you do.

Make sure you click the Add to Path checkbox! That is the one key part of installing python. If you don't you'll have to uninstall it and redo it, or add it to path manually which is a pain.

After you finished installing though, you can go back and continue the quick start guide!

Last updated