Minimal usage of pyenv and venv
Introduction
I'm developing with Python + Django, but if I'm in charge of multiple projects, the versions of Python, Django, and other libraries will differ depending on the project.
In some cases, the same Python version has different versions of different libraries, so versioning with pyenv and venv is very helpful. This time, I will focus on the minimum necessary functions and describe how to use it.
Deploy Environment
OS:macOS Big Sur(version 11.2.2)
Shell...
Basic Python
2723