En este video veremos como crear un entorno virtual python con pyenv
Python versions available with Pyenv:
pyenv versions
pyenv virtualenv 3.11.10 p31110
crea un entorno virtual con el nombre p31110 basaso en la version 3.11.10 de python instalada con pyenv
pyenv activate p31110
activa ese entorno virtual
In this video we will see how to create a Python virtual environment with pyenv
Python versions available with Pyenv:
pyenv versions
pyenv virtualenv 3.11.10 p31110
Create a virtual environment with the name P31110 based on Python version 3.11.10 installed with Pyenv
pyenv activate p31110
activate that virtual environment
pyenv deactivate
Turn off the virtual environment
pyenv virtualenv-delete p31110
Delete a virtual environment named P31110