Python Versions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 19: Line 19:


=Python Version Management with Brew=
=Python Version Management with Brew=
==Install a Specific Version==
==Update a Specific Version to a Newer Patch Level==
=<tt>pip</tt> relationship to Python Version=
=<tt>pip</tt> relationship to Python Version=

Revision as of 21:50, 2 November 2023

Internal

Overview

This page document how to deal with multiple Python versions on the same system. pyenv is a tool that deals with that.

brew install different Python major and minor versions in Cellar using the following naming scheme:

 Cellar
  ├─ ...
  ├─ python@3.8
  ├─ python@3.9
  ├─ python@3.10
  ├─ python@3.11
  ├─ python@3.12
  ├─ ...

Python Version Management with Brew

Install a Specific Version

Update a Specific Version to a Newer Patch Level

pip relationship to Python Version