Lines Matching refs:environment
4 python3 -m venv /path/to/new/virtual/environment
12 used at environment creation time). It also creates an (initially empty)
45 ENV_DIR A directory to create the environment in.
50 Give the virtual environment access to the system
56 --clear Delete the contents of the environment directory if it
57 already exists, before environment creation.
58 --upgrade Upgrade the environment directory to use this version
61 environment (pip is bootstrapped by default)
63 environment.
67 Once an environment has been created, you may wish to activate it, e.g. by
84 will resolve the symlink eagerly and ignore the virtual environment.
102 invoked to bootstrap ``pip`` into the virtual environment.
105 environment will be created, according to the given options, at each provided
108 Once a virtual environment has been created, it can be "activated" using a
109 script in the virtual environment's binary directory. The invocation of the
111 directory containing the virtual environment):
114 | Platform | Shell | Command to activate virtual environment |
129 When a virtual environment is active, the :envvar:`VIRTUAL_ENV` environment
130 variable is set to the path of the virtual environment. This can be used to
131 check if one is running inside a virtual environment.
133 You don't specifically *need* to activate an environment; activation just
134 prepends the virtual environment's binary directory to your path, so that
135 "python" invokes the virtual environment's Python interpreter and you can run
137 installed in a virtual environment should be runnable without activating it,
138 and run with the virtual environment's Python automatically.
140 You can deactivate a virtual environment by typing "deactivate" in your shell.