Install Python using pyenv
- List installed versions
pyenv versions
- List available versions
pyenv install -l
- Install
pyenv install python 3.11
Creat a virtual environment using pipenv
- Create a vertual environment
pipenv –python 3.11
- Activate the cirtual environment
pipenv shell
- Install a library
pienv install pandas