PyEnv not respected when version checking
See original GitHub issueI am on an Ubuntu variant, so Python 3.10 isn’t natively supported. I am using PyEnv via pyenv shell 3.10
, and as you can see below my version should be supported:
~$ gitfive login
[-] GitFive only works with Python 3.10+.
Your current Python version : 3.8.10
~$ python -V
Python 3.10.8
~$ python3 -V
Python 3.10.8
However, GitFive does not acknowledge that this is the case and therefore will not run.
Issue Analytics
- State:
- Created 10 months ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
pyenv global x.x.x not changing the python version · Issue #849
Run `pyenv versions' for a list of available Python versions. When `-` is passed instead of the version string, the previously set version...
Read more >Cannot switch Python with pyenv - Stack Overflow
The pyenv versions command is just checking through the hierarchy and selecting the right Python version to use when a "shim interceptable" command...
Read more >Managing Multiple Python Versions With pyenv
In this step-by-step tutorial, you'll learn how to install multiple Python versions and switch between them with ease, including project-specific virtual ...
Read more >pyenv for Managing Python Versions and Environments
Use pyenv to install whichever versions of Python we want With the following command, we can see all the Python version available from...
Read more >pyenv local not working | The Search Engine You Control
5 and I have a project folder myproject configured with pyenv local to use version 3.6.11 instead. To enable automatic switching between python...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Wtf 😭 It doesn’t make sense
When I did it with
which python3.10
instead that worked! Good call. Think this is worth mentioning in the README in case anyone else has the same problem?