From 579525fc479b1ee6bb9fd73820dbf8ae8f95cf87 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Wed, 12 Oct 2022 22:06:31 +0300 Subject: [PATCH] Clarify the wording --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fba0b61..995bdcd 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,9 @@ $ pyenv virtualenv 2.7.10 my-virtual-env-2.7.10 will create a virtualenv based on Python 2.7.10 under `$(pyenv root)/versions` in a folder called `my-virtual-env-2.7.10`. -`pyenv virtualenv` forwards any options to the underlying executable that creates the actual venv (`conda`, `virtualenv`, or `python -m venv`). +`pyenv virtualenv` forwards any options to the underlying command that actually +creates the virtual environment (`conda`, `virtualenv`, or `python -m venv`). +See the output of `pyenv virtualenv --help` for details. ### Create virtualenv from current version