How to update Python on Windows? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report In this article, we are going to see how to update Python in the Windows system. For the sake of example, we will be upgrading from Python 3.6.8 to Python 3.9.6. Here, we will see how to upgrade the Python version.Upgrading Python on WindowsTo check the current version of Python on your system, use the following command in the command prompt:python -VThis will show you your current Python version as shown below:Upgrade Python Version Using Executable installerFollow the below steps to update the Python version on Windows:Step 1: Visit the Official SiteGo to Python's official site.Step 2: Download PythonClick on the Downloads tab.Here you will get a list of available releases.Step 3: Download the Python 3.9.6 Installer for Your SystemDownload the version you need to upgrade to based on your system specifications(ie, 32-bit or 64-bit). Here we will be downloading the 64-bit installer for 3.9.6.Step 4: Initiate Python 3.9.6 InstallationClick on the installer and it will begin the installation. Make sure to select the "Add Python 3.9 to PATH" option. and click on "Install Now".This will start the installation as shown below:After the installation is successful you will get the following message:Step 5: Verify Python InstallationNow if you open up your cmd and use the below command:python -VYou'll see your version of Python has been updated to 3.9.6 as shown below: Comment More infoAdvertise with us Next Article How to install Python on Windows? D ddeevviissaavviittaa Follow Improve Article Tags : Python Blogathon python-basics Practice Tags : python Similar Reads How to Upgrade PIP on Windows In this tutorial, we will see how to Upgrade PIP on Windows. We will cover how to upgrade, check the version, and also how to downgrade PIP to the previous version.What does pip () do?PIP is a package management system used to install and manage software packages/libraries written in Python. These f 4 min read How to install Python on Windows? Python is a high-level programming language that has become increasingly popular due to its simplicity, versatility, and extensive range of applications. The process of How to install Python in Windows, operating system is relatively easy and involves a few uncomplicated steps. This article aims to 5 min read How to install Python on Windows? Python is a high-level programming language that has become increasingly popular due to its simplicity, versatility, and extensive range of applications. The process of How to install Python in Windows, operating system is relatively easy and involves a few uncomplicated steps. This article aims to 5 min read How to install Python on Windows? Python is a high-level programming language that has become increasingly popular due to its simplicity, versatility, and extensive range of applications. The process of How to install Python in Windows, operating system is relatively easy and involves a few uncomplicated steps. This article aims to 5 min read How to add Python to Windows PATH? Python is a great language! However, it doesnât come pre-installed with Windows. Hence we download it to interpret the Python code that we write. But wait, windows donât know where you have installed the Python so when trying to any Python code, you will get an error. We will be using Windows 10 and 2 min read How to add Python to Windows PATH? Python is a great language! However, it doesnât come pre-installed with Windows. Hence we download it to interpret the Python code that we write. But wait, windows donât know where you have installed the Python so when trying to any Python code, you will get an error. We will be using Windows 10 and 2 min read Like