Setup of Python virtualenv sandboxes.
New in version 0.17.0.
This function is an alias of managed
.
Create a virtualenv and optionally manage it with pip
- name
Path to the virtualenv.
- venv_bin: virtualenv
The name (and optionally path) of the virtualenv command. This can also be set globally in the minion config file as
virtualenv.venv_bin
.- requirements: None
Path to a pip requirements file. If the path begins with
salt://
the file will be transferred from the master file server.- use_wheel: False
Prefer wheel archives (requires pip >= 1.4).
- python: None
Python executable used to build the virtualenv
- user: None
The user under which to run virtualenv and pip.
- cwd: None
Path to the working directory where pip install is executed.
- no_deps: False
Pass --no-deps to pip install.
- pip_exists_action: None
Default action of pip when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup.
- proxy: None
Proxy address which is passed to pip install.
- env_vars: None
Set environment variables that some builds will depend on. For example, a Python C-module may have a Makefile that needs INCLUDE_PATH set to pick up a header file while compiling.
- no_use_wheel: False
Force to not use wheel archives (requires pip>=1.4)
- no_binary
Force to not use binary packages (requires pip >= 7.0.0) Accepts either :all: to disable all binary packages, :none: to empty the set, or a list of one or more packages
- pip_upgrade: False
Pass --upgrade to pip install.
- pip_pkgs: None
As an alternative to requirements, pass a list of pip packages that should be installed.
- process_dependency_links: False
Run pip install with the --process_dependency_links flag.
New in version 2017.7.0.
Also accepts any kwargs that the virtualenv module will. However, some kwargs, such as the
pip
option, require- distribute: True
./var/www/myvirtualenv.com: virtualenv.managed: - system_site_packages: False - requirements: salt://REQUIREMENTS.txt - env_vars: PATH_VAR: '/usr/local/bin/'
Create a virtualenv and optionally manage it with pip
Path to the virtualenv.
The name (and optionally path) of the virtualenv command. This can also
be set globally in the minion config file as virtualenv.venv_bin
.
Path to a pip requirements file. If the path begins with salt://
the file will be transferred from the master file server.
Prefer wheel archives (requires pip >= 1.4).
Python executable used to build the virtualenv
The user under which to run virtualenv and pip.
Path to the working directory where pip install is executed.
Pass --no-deps to pip install.
Default action of pip when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup.
Proxy address which is passed to pip install.
Set environment variables that some builds will depend on. For example, a Python C-module may have a Makefile that needs INCLUDE_PATH set to pick up a header file while compiling.
Force to not use wheel archives (requires pip>=1.4)
Force to not use binary packages (requires pip >= 7.0.0) Accepts either :all: to disable all binary packages, :none: to empty the set, or a list of one or more packages
Pass --upgrade to pip install.
As an alternative to requirements, pass a list of pip packages that should be installed.
Run pip install with the --process_dependency_links flag.
New in version 2017.7.0.
Also accepts any kwargs that the virtualenv module will. However, some
kwargs, such as the pip
option, require - distribute: True
.
/var/www/myvirtualenv.com:
virtualenv.managed:
- system_site_packages: False
- requirements: salt://REQUIREMENTS.txt
- env_vars:
PATH_VAR: '/usr/local/bin/'