Includes scripts to help with easier python configuration.
- 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