0%

0/1 Lessons

Installing Python on Windows

• 1hr 17min

0 / 4 lessons complete

Python Basics

• 28min

0 / 7 lessons complete

Python Variables

• 41min

0 / 8 lessons complete

Even more Python Variables!

• 41min

0 / 6 lessons complete

Conditional Statements

• 15min

0 / 3 lessons complete

Writing Functions

• 30min

0 / 5 lessons complete

Python Loops

• 23min

0 / 5 lessons complete

Python PIP and Modules

• 18min

0 / 4 lessons complete

RegEx

• 26min

0 / 4 lessons complete

Working with APIs

• 12min

0 / 3 lessons complete

Course Conclusion

• 2min

0 / 1 lessons complete

Downloading and Installing Python 3 on Windows

Instructions

Q&A (0)

Notes (0)

Resources (0)

Saving Progress...

Resources

There are no resources for this lesson.

Notes can be saved and accessed anywhere in the course. They also double as bookmarks so you can quickly review important lesson material.

Create note

We can download Python from the official website python.org.

Python Download

Note that you will most likely see a different version listed here. You should download the latest version or an earlier version if you prefer. The exact version you download here isn't too important.

Once the download completes, launch the installer. Be sure that enable Add Python 3.10 to PATH as this is what will allow you to run this version of Python by typing "python" in your command prompt:

Install Python 3.10.5

Once you enable that checkbox, click Install Now. You will receive a prompt to provide administrator access. Click yes.

Once the installation is finished you will see a screen similar to this:

Python Installation Successful

Click Close. Now launch Command Prompt:

Type python and press Enter:

This should return output like that below:

Python

If instead your computer opens the Microsoft Store asking you to install python then we need to remove the built-in windows alias. We obviously don't want to install this version but we want to use the version that we just installed.

Python 3.10 Windows Store

Click the Windows button and search for Manage app execution Alias

Turn off all aliases for Python and Python3:

Now when you execute the python command you will see the proper output:

Python CMD

You can exit the python console by typing:

exit()

This will return you to the command prompt as shown below:

Exiting Python 3 in CMD

Finally, let's make sure the the PIP package manager was also installed by running the pip command:

pip

This should return a long series of help output like shown below:

If you are able to open Python and run the pip command then you're all done for this lesson!

0 0 votes
Lesson Rating
Subscribe
Notify of
profile avatar
0 Comments
Inline Feedbacks
View all comments