pyenv support #107
jefftriplett
started this conversation in
Ideas
Replies: 2 comments 10 replies
-
You can set But I assume you still want explicit pyenv support? Or does that environment variable solve this for you? |
Beta Was this translation helpful? Give feedback.
10 replies
-
This is now covered in the README thanks to c9e92a5! Thanks everyone for helping out to resolve this! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am not sure how far you want to deep dive with having pyenv support, but I noticed this behavior today:
Basically,
pyenv global
lets you set up a bunch of global python versions including which version is your default aka resolves first when you runpython
orpython3
.At first glance, this might not seem important, but VS Code and a few other apps, do not like it if you have Python 3.6 installed, but not linked to a global version like
python3.6
.I would expect
py --version
to give mePython 3.9.5
instead ofPython 3.10.0a4+
because other apps seem to just work with the defaultpython
orpython3
version that I have setup.py -3.9 --version
works but is less tab-completable thanpy
.PS: I don't think this is a deal-breaker, but I suspect it'll be a common issue now that more and more tutorials and guides are starting to recommend that people use pyenv over homebrew or other python versions.
Beta Was this translation helpful? Give feedback.
All reactions