On windows 11 I use pyenv to be able to select a specific python version. I want to select python 3.11.9, and the output of
pyenv versions
is:
3.10.11
3.11.8
* 3.11.9 (set by C:\Users\WORK\.pyenv\pyenv-win\version)
However, the installed python version is 3.10.11:
> python --version
Python 3.10.11
How to fix this issue?
pyenv local 3.11.9python --versionis still 3.10.11