Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 545 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 545 Bytes

python-helper

Includes scripts to help with easier python configuration.

pyenv

  • No need for a bunch of conflicting python versions installed on your system.
  • Quick and easy python version switching and staying up to date with the latest.

If I wanted to install a given python version:

  • Run the provided pyenv installer script.
  • Check what versions are available: pyenv install --list
  • Install a version of your choice, e.g. 3.11.2: pyenv install 3.11.2
  • Set the global python interpreter to this version: pyenv global 3.11.2