arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

1️⃣ Python

hashtag
Step 1 - Python Already installed?

  1. Verify if you already have Python is installed or not

  2. Open Command Prompt, execute command\

  3. If Python is not installed, you will see an error indicating that python cannot be found. You can install it from the Windows app store or by manual download - instructions are in the next section. and install using the link below. (Note: if you have python 2.x installed, please uninstall it and install the latest version of 3.x using the instructions in the next section.)

hashtag
Step 2 - Install Python

There are two options available to install Python:

  • Install from the Windows app store

  • Download and manually install Python from Python.org

Either option will work fine, with the Windows app store being a slightly better installation experience.

hashtag
Windows App Store

To start the install from the Windows App store, simply type "python" at a Windows command prompt.

The app store UI will open and provide an install button:\

Once the download and install process is completed, you should see the following from a command prompt

hashtag
Download From Python.org

Download Python from the link below:

Follow the installation instructions provided on the download page.

circle-exclamation

During installation check the box for "Add Python 3.10 to PATH"

circle-info

Close and reopen Command the prompt window for the PATH update to take effect

After restarting the Command prompt window, verify python has been successfully installed with command:

If successful you should output similar to the following

python --version
C:\>python --version
Python 3.10.2
python --version
C:\>python --version
Python 3.10.2
Download PythonPython.orgchevron-right
Logo