A Weird Python Command Not Found Problem
Problem Statement
$ python
pyenv: python: command not found
The `python' command exists in these Python versions:
3.9.11
Note: See 'pyenv help global' for tips on allowing both
python2 and python3 to be found.Resolution
$ ls /usr/bin /usr/local/bin | grep python
python3
Python
Conclusion
Reference
Last updated