Self-paced

Explore our extensive collection of courses designed to help you master various subjects and skills. Whether you're a beginner or an advanced learner, there's something here for everyone.

Bootcamp

Learn live

Join us for our free workshops, webinars, and other events to learn more about our programs and get started on your journey to becoming a developer.

Upcoming live events

Learning library

For all the self-taught geeks out there, here is our content library with most of the learning materials we have produced throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer - 16w

Data Science and Machine Learning - 16 wks

Search from all Lessons


LoginGet Started

Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge

Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast
← Back to How to's
Edit on Github

How to update Python version?

Written by:

Here is a way to install python on windows, mac or linux (commands vary depending on the operating system):

1# On windows Powershell 2$ choco upgrade python -y 3 4# MacOs homebrew with pipenv 5# you would need to install python first 6$ pyenv install 3.9.2 7 8# linux 9$ sudo add-apt-repository ppa:deadsnakes/ppa 10$ sudo apt update 11$ sudo apt install python3.9

During the rest of the article you want check details on the rest of the installation steps depending on your operating system.

Updating Python on Windows OS:

To update Python on a Windows Operating System to the latest, we can choose one of 2 ways, it's up to you which want you want to follow:

  1. Downloading the Python installer of the version we want.
  2. Making use of Windows Chocolatey, a powerful package manager.

Update by downloading the Python version

  • The installer we'll find it on python.org
  • Select Latest Python 3 Release - Python 3.11.1 (if there's a new version when you read this article, it won't be Python 3.11.1)
  • Scroll until you find a table with all the version available and select the one that suits you the best (in our case Windows installer (64-bit))
  • Once downloaded run the installer and follow instructions. If there's not a installed Python version already, it'll install this version. If there's a Python version already installed, it'll upgrade it.
  • You can verify your installation/upgrade by opening CMD or PowerShell terminal and typing python -V
1$ python -V 2# Output: Python 3.11.0

🖐 For a more in-depth guide regarding this procedure, please head to our step-by-step guide on how to update python on windows where we cover with pictures of every step.

Update Python version using Chocolatey Package Manager

Chocolatey Package Manager has become a favorite among Windows users when handling Python versions or adding other software to our System using PowerShell.

Installing Chocolatey

  • Open the PowerShell as administrator. On your start menu type powershell and select Run as Administrator

  • Install Chocolatey using the following command:

1Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
  • Verify Chocolatey installation. On the Powershell terminal, type choco.
1$ choco 2# Expected output: 3Chocolatey v1.2.0 4Please run 'choco -?' or 'choco <command> -?' for help menu.

Updating Python with Chocolatey

Having Chocolatey installed in our System, upgrading Python is now as simple as typing: choco upgrade python -y

1$ choco upgrade python -y 2 3# expected output: 4 5Chocolatey v1.2.0 6Upgrading the following packages: 7python 8By upgrading, you accept licenses for the packages. 9python is not installed. Installing 10Progress: Downloading python3 3.11.0... 90%

Let's verify that the install and upgrade was successful with the command we used earlier

1$ python -V 2 3# Output: Python 3.11.0

Updating Python on MacOS

Even if almost the entire Python community has moved to Python 3.X, MacOS still comes with version 2.9. To use the latest Python version you'll need to install it manually.

Checking python version on MacOS:

Let's first check if your System is indeed using the version 2.9 or a later one.

  • Open the terminal. You can find it on MacOs spotlight (command + space) and typing terminal
  • type python

If you receive a message like this:

1WARNING: Python 2.7 is not recommended. This version is included in macOS for compatibility with legacy software. Future versions of macOS will not include Python 2.7. Instead, it is recommended that you transition to using 'python3' from within Terminal.

It means that you need to update your python version ASAP, so let´s get into it.

There are 2 options to update Python on MacOs:

  1. Download and install the version from python

  2. Use Homebrew to intall pyenv package manager and then install the Python version(s) you want

Update by downloading

  • Head to python.org
  • Select the latest version (Latest Python 3 Release - Python 3.11.1 latest version when writing this article ) or scroll until you find the version you want.
  • Once download finishes, run the installer
  • Verify the installation opening the terminal and typing the following command python -V

Getting ready to upgrade with Homebrew:

To handle our Python development enviorments and Python version we use Homebrew, a powerfull package manager for all Mac Operating Systems.

  • Install homebrew with the following command:
1$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Most probably, you'll be prompted for sudo (Super User-level access) and to grant it, you´ll need to write your password. Keep in mind, what you write, will not be displayed, not even with *.

  • Confirm installation with Return (Enter) or cancel with any other key.

Now that we installed Homebrew on our System, we´ll install pyenv to manage our Python versions more efficiently.

Installing with pyenv (recomended)

What pyenv will allow us to do, is to switch between different Python versions (remember, Python 4 will come out soon, yay!)

Open a terminal as we did earlier $ brew install pyenv

It´s done! We now have pyenv installed and now we'll make a new Python installation or upgrade it.

Installing/Updating Python on pyenv

Thanks to pyenv we now can install Python with a simple one liner:

1$ pyenv install 3.9.9

It´s not mandatory to use version 3.9.9, you can instead pass any version you wish to install.

Installation errors

If you receive an error regarding C compiler cannot create executables most probably is XCode related and if you upgrade your MacOS to Big Sur, then probabilities goes higher.

Fixing this problem ain´t a big problem, but will take as much time as your internet speed will allow it.

  • Download the latest version of Apple's Xcode here
  • Re-run the previous commands pyenv install 3.9.9 and it should work just fine

Set up your MacOS path for pyenv (Bash)

To use our pyenv we need to update our .bash_profile with the following commands:

With /bin directory

1$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
1$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile

Without /bin directory

If your System doesn't have a /bin directory in the pyenv_root folder most probably, you only have /shims directory. If it´s the case, you'll need this commands instead

1$ echo 'export PATH="$PYENV_ROOT/shims:$PATH"' >> ~/.bash_profile
1$ echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi' >> ~/.bash_profile

Reseting the terminal to get the changes

We need to reset the terminal in order for all this changes to be accesible.

To reset the terminal, just type:

1$ reset

Update Python on Linux

We´ll be using deadsnakes ppa (Personal Package Archives) that'll allows us to have multiple python versions installed on our System at the same time.

  • First we need to inlude deadsnakes to our repositories trusted list
1$ sudo add-apt-repository ppa:deadsnakes/ppa 2$ sudo apt-get update
  • After installation finishes, we'll be able to install any Python version we want with the following command
1$ sudo apt install python3.11.1
  • To run python, use the following
1$ python3.11.1

If you want to grow as a developer you can check this 4Geeks Lesson titled Learn to Code with Python. Hope you enjoy the reading and keep on the Geek side!