From 909e4de414b4701d4593496460910dcb93ff0282 Mon Sep 17 00:00:00 2001 From: Morgan Evans Date: Fri, 5 Sep 2014 12:09:33 -0400 Subject: [PATCH] added instructions for deleting virtualenvs --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 75b97c0..eeebdbb 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,13 @@ You can also activate and deactivate a pyenv virtualenv this way: pyenv deactivate +### Delete existing virtualenv + +Removing the directory in `~/.pyenv/versions` will delete the virtualenv, or you can run: + + pyenv uninstall my-virtual-env + + ### virtualenv and pyvenv There is [venv](http://docs.python.jp/3/library/venv.html) module available for CPython 3.3 and newer.