{"id":9455,"date":"2021-01-18T11:49:52","date_gmt":"2021-01-18T16:49:52","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=9455"},"modified":"2021-12-04T05:51:11","modified_gmt":"2021-12-04T05:51:11","slug":"install-python-3-windows-systems","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/install-python-3-windows-systems\/","title":{"rendered":"How to Install Python 3 on Windows Systems With Examples"},"content":{"rendered":"\n

This guide will show you how to download and install Python 3 on Windows systems with examples. If you would like to install Python on Ubuntu systems you can follow this guide<\/a>.<\/p>\n\n\n\n

Python is a popular high-level, interpreted, and dynamic programming language that supports object-oriented, imperative, and functional or procedural programming styles. This tutorial will help you to install Python 3 on the Windows 10 system.<\/p>\n\n\n\n

Step 1: Download the Python Installer<\/h2>\n\n\n\n

Visit the Python official download page<\/a> and download the latest version of the Python installer. The current version at the time of publishing this post is Python 3.9.1. Select the right binary (32 bit or 64 bit) for your system.<\/p>\n\n\n\n

\"\"
Install Python 3 on Windows: Select version<\/figcaption><\/figure>\n\n\n\n
\"\"
Download Recommended Python Binary (32 bit or 64 bit)<\/figcaption><\/figure>\n\n\n\n

Step 2: Install Python 3 on Windows<\/h2>\n\n\n\n

After the download is complete of Python run the installer by double-clicking on it and following the installation wizard. Select your preferred method of installation which could be Install Now<\/strong> or the Customize Installation button<\/strong>.<\/p>\n\n\n\n

\"Python
Python 3 Installation options<\/figcaption><\/figure>\n\n\n\n

Also, make sure you have checked both checkboxes for Install python for all users<\/strong> and Add Python 3.9 to Path<\/strong>.<\/p>\n\n\n\n

If you chose to Customize, in the next step, select the optional features you want to install.<\/p>\n\n\n\n

\"Python
Python Optional Features<\/figcaption><\/figure>\n\n\n\n

Next, select the advance options you require. Ideally, you can select all of the options being cautious about the debugging symbols<\/strong> and debug binaries<\/strong>. Click Install<\/strong>.<\/p>\n\n\n\n

\"Install
Python 3 Advanced Options<\/figcaption><\/figure>\n\n\n\n

Step 3: Verify Your Python Installation<\/h2>\n\n\n\n

Open the Windows command prompt and type “python<\/strong>“. If the installation was successfully configured, you will see a similar output to the one below.<\/p>\n\n\n\n

Microsoft Windows [Version 10.0.19041.746]\n(c) 2020 Microsoft Corporation. All rights reserved.\n\nC:\\Users\\User>python\nPython 3.9.1 (tags\/v3.9.1:1e5d33e, Dec 7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32\nType "help", "copyright", "credits" or "license" for more information.\n>>><\/code><\/pre>\n\n\n\n

Bonus Step: Upgrading Python 3 on Windows<\/h2>\n\n\n\n

To upgrade Python 3 on Windows you can simply follow the above steps and the installer will upgrade your current Python installation.<\/p>\n\n\n\n

Bonus Reading:<\/strong>
Here are some usage examples to test your installation.<\/p>\n\n\n\n