You can find GitHub repository in https://github.com/python-projects-kenanhancer/python_demo
- Pyenv – Python Runtime Version Manager
- Pipenv – Python Package Manager and Virtual environment manager
- Venv – Virtual environment manager
- Virtualenv – Virtual environment manager
Installing Python Runtime Versions via Pyenv
In order to test different Python Runtime versions, I have installed some versions.
$ pyenv install 3.10.2
python-build: use openssl@1.1 from homebrew
python-build: use readline from homebrew
Downloading Python-3.10.2.tar.xz...
-> https://www.python.org/ftp/python/3.10.2/Python-3.10.2.tar.xz
Installing Python-3.10.2...
python-build: use tcl-tk from homebrew
python-build: use readline from homebrew
python-build: use zlib from xcode sdk
Installed Python-3.10.2 to /Users/kenanhancer/.pyenv/versions/3.10.2
I have 4 Python runtime versions(3.10.2
, 3.10.3
, 3.10.4
, 3.10.5
) in my machine.
$ pyenv versions
system
3.10.2
3.10.3
3.10.4
* 3.10.5 (set by /Users/kenanhancer/.pyenv/version)
Continue reading