Add envs/*/my-virtual-env dir for uninstall

Both directories need to be deleted or a subsequent install with the same name will fail

pyenv install 3.4.3 my-virtual-env:
rm -rf ~/.pyenv/versions/my-virtual-env ~/.pyenv/versions/3.4.3/my-virtual-env
This commit is contained in:
Lee Clemens
2015-12-06 12:11:08 -05:00
parent 17d22e7a13
commit a64f194163

View File

@@ -138,7 +138,7 @@ pyenv deactivate
### Delete existing virtualenv
Removing the directory in `~/.pyenv/versions` will delete the virtualenv, or you can run:
Removing the directories in `~/.pyenv/versions` and `~/.pyenv/versions/{version}/envs` will delete the virtualenv, or you can run:
```sh
pyenv uninstall my-virtual-env