File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,9 @@ $ pyenv virtualenv 2.7.10 my-virtual-env-2.7.10
99
99
will create a virtualenv based on Python 2.7.10 under `$(pyenv root)/versions` in a
100
100
folder called `my-virtual-env-2.7.10`.
101
101
102
+ `pyenv virtualenv` forwards any options to the underlying command that actually
103
+ creates the virtual environment (`conda`, `virtualenv`, or `python -m venv`).
104
+ See the output of `pyenv virtualenv --help` for details.
102
105
103
106
### Create virtualenv from current version
104
107
Original file line number Diff line number Diff line change 6
6
# pyenv virtualenv --version
7
7
# pyenv virtualenv --help
8
8
#
9
- # -f/--force Install even if the version appears to be installed already
9
+ # -f/--force Install even if the version appears to be installed already. Skip
10
+ # prompting for confirmation
11
+ #
12
+ # Notable VIRTUALENV_OPTIONS passed to venv-creating executable, if applicable:
13
+ # -u/--upgrade Imply --force
10
14
#
11
15
12
16
PYENV_VIRTUALENV_VERSION=" 1.1.5"
You can’t perform that action at this time.
0 commit comments