> For the complete documentation index, see [llms.txt](https://wiki.dewaka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.dewaka.com/programming-languages/python/tools/pyenv.md).

# pyenv

## Create an pyenv virtualenv

```
pyenv virtualenv 3.7.4 iam-cleaner
```

## List virtualenv

```
pyenv virtualenvs
```

## Activate new environment

```
pyenv activate iam-cleaner
```

## Removing/Uninstalling virtual environment

```
pyenv uninstall iam-cleaner
```
