From fa04d6f9df7af4a537569439c142a2cd3004cc66 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Fri, 11 Jul 2014 20:30:43 +0900 Subject: [PATCH] Add notes on `pyvenv` in README --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index d784400..75b97c0 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,15 @@ You can also activate and deactivate a pyenv virtualenv this way: pyenv activate pyenv deactivate + +### virtualenv and pyvenv + +There is [venv](http://docs.python.jp/3/library/venv.html) module available for CPython 3.3 and newer. +It provides a command-line tool `pyvenv` which is the successor of `virtualenv` and distributed by default. + +The `pyenv-virtualenv` uses `pyvenv` if it is available and the `virtualenv` is not available. + + ### Special environment variables You can set certain environment variables to control the pyenv-virtualenv.