venv.EnvBuilder.setup_scripts()

setup_scripts(context) Installs activation scripts appropriate to the platform into the virtual environment.

2016-10-07 17:47:11
venv.EnvBuilder.ensure_directories()

ensure_directories(env_dir) Creates the environment directory and all necessary directories, and returns a context object. This

2016-10-07 17:47:10
ensurepip.version()

ensurepip.version() Returns a string specifying the bundled version of pip that will be installed when bootstrapping an environment

2016-10-07 17:33:01
distutils

The distutils package provides support for building and installing additional modules into a Python installation. The new modules may be either 100%-pure Python

2016-10-07 17:32:04
venv.EnvBuilder.install_scripts()

install_scripts(context, path) path is the path to a directory that should contain subdirectories “common”, “posix”

2016-10-07 17:47:10
venv.create()

venv.create(env_dir, system_site_packages=False, clear=False, symlinks=False, with_pip=False) Create an EnvBuilder

2016-10-07 17:47:10
venv.EnvBuilder

class venv.EnvBuilder(system_site_packages=False, clear=False, symlinks=False, upgrade=False, with_pip=False) The EnvBuilder

2016-10-07 17:47:10
venv.EnvBuilder.create_configuration()

create_configuration(context) Creates the pyvenv.cfg configuration file in the environment.

2016-10-07 17:47:10
venv.EnvBuilder.setup_python()

setup_python(context) Creates a copy of the Python executable (and, under Windows, DLLs) in the environment. On a POSIX system

2016-10-07 17:47:11
ensurepip.bootstrap()

ensurepip.bootstrap(root=None, upgrade=False, user=False, altinstall=False, default_pip=False, verbosity=0) Bootstraps pip

2016-10-07 17:33:01