Lines Matching full:environment
2 Virtual environment (venv) package for Python. Based on PEP 405.
22 This class exists to allow virtual environment creation to be
24 behaviour when called upon to create a virtual environment.
27 *un*available to the created environment.
35 :param clear: If True, delete the contents of the environment directory if
36 it already exists, before environment creation.
38 virtual environment.
39 :param upgrade: If True, upgrade an existing virtual environment.
41 environment
42 :param prompt: Alternative terminal prefix for the environment.
61 Create a virtual environment in a directory.
63 :param env_dir: The target directory to create an environment in.
97 Create the directories for the environment.
99 Returns a context object which holds paths in the environment,
149 Create a configuration file indicating where the environment's Python
151 available in the environment.
153 :param context: The information for the environment creation request
233 Set up a Python executable in the environment.
235 :param context: The information for the environment creation request
292 """Installs or upgrades pip in a virtual environment"""
294 # environment vars, the current directory and anything else
295 # intended for the global Python environment
302 Set up scripts into the created environment from a directory.
304 This method installs the default scripts into the environment
320 :param context: The information for the environment creation request
333 :param context: The information for the environment creation request
345 Install scripts into the created environment from a directory.
347 :param context: The information for the environment creation request
352 being run on, are installed in the created environment.
353 Placeholder variables are replaced with environment-
408 """Create a virtual environment in a directory."""
430 epilog='Once an environment has been '
436 help='A directory to create the environment in.')
439 help='Give the virtual environment access to the '
458 'environment directory if it '
460 'environment creation.')
462 dest='upgrade', help='Upgrade the environment '
469 'virtual environment (pip is bootstrapped '
473 'this environment.')