I wanted to install python 3.10 but that version is not available on pyenv version list.
checked by pyenv install --list
.
People suggested to upgrade pyenv that but I do not see help related to updating pyenv.
Asked
Active
Viewed 3,386 times
11

Aniket Singh
- 2,464
- 1
- 21
- 32
1 Answers
21
pyenv
isn't really 'installed' in a traditional sense, it's just a git checkout. All you have to do to update is
cd ~/.pyenv
git pull
That also updates the list of available python versions.

Sören
- 1,803
- 2
- 16
- 23
-
One has to be on their `master` branch for this to work – af3ld Dec 21 '22 at 22:00