Python Concepts/Introduction and Setup/Windows Installation
These instructions will help you install Python on a Windows machine, and is part of the Introduction and Setup lesson.
Checking for an Existing Python InstallationeditPython does not usually come bundled with Windows machines, but it's still worth checking. Open the shell of your choice (either Command Prompt or Powershell) and type If the command outputs "Python 3.x" (version number >= 3.0):editExample: Python 3.10.5 You already have a recent version of Python installed! Return to the lesson. If you get "command not recognized" or similar:editExample: 'python' is not recognized as an internal or external command, operable program or batch file. You don't have Python installed. Continue to Installation. If the command outputs "Python 2.x" (version number < 3.0):editExample: Python 2.7.18 This is where things get complicated. See, you have Python 2 installed, but that's an obsolete version that is no longer supported. Try typing Either way, keep in mind that during the course, you will always need to use the InstallationeditDownloadingeditHead to Python's download page for Windows and download the latest installer for Python 3. (64-bit installer if your computer can support it, 32-bit installer if your computer cannot.)
InstallingeditRun the downloaded | |
Return to Introduction and Setup |