Beatriz Uezu @beatrizuezu
Beatriz Uezu | @beatrizuezu
It allows to install and switch between python versions
documentation
> pyenv local 3.10.12
> pyenv global 3.10.12
It's a way to isolate your project code
Using venv
Β
It's a module included in Python
Example
.venv is the name of your virtual environment, be aware we're creating a hidden folder here!
python -m venv <env-name>
python -m venv .venv
By Beatriz Uezu