python

python

Python is a programming language that lets you work quickly and integrate systems more effectively.

Check Current Version of python

python -V

Install pyenv to Manage python Versions

brew install pyenv

Show All Available python Versions

pyenv install --list

Install Specific python Versions

pyenv install -v 3.11.3

Show Installed python Versions

pyenv versions

Switch to a Specific python Version

pyenv global 3.11.3