Lines Matching full: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 You don't specifically *need* to activate an environment; activation just
130 prepends the virtual environment's binary directory to your path, so that
131 "python" invokes the virtual environment's Python interpreter and you can run
133 installed in a virtual environment should be runnable without activating it,
134 and run with the virtual environment's Python automatically.
136 You can deactivate a virtual environment by typing "deactivate" in your shell.