pyenv virtualenv

main
Jeff Moe 2023-09-29 17:24:45 -06:00
parent 7685d9a54f
commit 1c3854978e
1 changed files with 13 additions and 0 deletions

View File

@ -177,6 +177,19 @@ pyenv install 3.12-dev
pyenv install 3.13-dev
```
Use pyenv to set a particular version in a virtualenv:
```
mkdir -p foodir
cd foodir/
pyenv local 3.11.5
virtualenv -p 3.11.5 env
source env/bin/activate
python --version
pip install --upgrade pip setuptools wheel
pip install fooapp
```
# Development
To "develop", install the requirements: