Install Python packages with pip to either the system or a virtualenv
New in version 2014.7.4.
Salt now uses a portable python. As a result the entire pip module is now
functional on the salt installation itself. You can pip install dependencies
for your custom modules. You can even upgrade salt itself using pip. For this
to work properly, you must specify the Current Working Directory (cwd
) and
the Pip Binary (bin_env
) salt should use. The variable pip_bin
can be
either a virtualenv path or the path to the pip binary itself.
For example, the following command will list all software installed using pip to your current salt environment:
salt <minion> pip.list cwd='C:\salt\bin\Scripts' bin_env='C:\salt\bin\Scripts\pip.exe'
Specifying the cwd
and bin_env
options ensures you're modifying the
salt environment. If these are omitted, it will default to the local
installation of python. If python is not installed locally it will fail saying
it couldn't find pip.
This functionality works in states as well. If you need to pip install colorama with a state, for example, the following will work:
install_colorama:
pip.installed:
- name: colorama
- cwd: 'C:\salt\bin\scripts'
- bin_env: 'C:\salt\bin\scripts\pip.exe'
- upgrade: True
You can now update salt using pip to any version from the 2014.7 branch forward. Previous version require recompiling some of the dependencies which is painful in windows.
To do this you just use pip with git to update to the version you want and then restart the service. Here is a sample state file that upgrades salt to the head of the 2015.5 branch:
install_salt:
pip.installed:
- cwd: 'C:\salt\bin\scripts'
- bin_env: 'C:\salt\bin\scripts\pip.exe'
- editable: git+https://github.com/saltstack/salt@2015.5#egg=salt
- upgrade: True
restart_service:
service.running:
- name: salt-minion
- enable: True
- watch:
- pip: install_salt
Note
If you're having problems, you might try doubling the back slashes. For example, cwd: 'C:\salt\bin\scripts'. Sometimes python thinks the single back slash is an escape character.
There is a known incompatibility between Python2 pip>=10.* and Salt <=2018.3.0. The issue is described here: https://github.com/saltstack/salt/issues/46163
Return a list of installed packages either globally or in the specified virtualenv
Path to pip (or to a virtualenv). This can be used to specify the path
to the pip to use when more than one Python release is installed (e.g.
/usr/bin/pip-2.7
or /usr/bin/pip-2.6
. If a directory path is
specified, it is assumed to be a virtualenv.
The user under which to run pip
Directory from which to run pip
Note
If the version of pip available is older than 8.0.3, the list will not
include the packages pip
, wheel
, setuptools
, or
distribute
even if they are installed.
CLI Example:
salt '*' pip.freeze bin_env=/home/code/path/to/virtualenv
Install packages with pip
Install packages individually or from a pip requirements file. Install packages globally or to a virtualenv.
Comma separated list of packages to install
Path to requirements
Path to pip (or to a virtualenv). This can be used to specify the path
to the pip to use when more than one Python release is installed (e.g.
/usr/bin/pip-2.7
or /usr/bin/pip-2.6
. If a directory path is
specified, it is assumed to be a virtualenv.
Note
For Windows, if the pip module is being used to upgrade the pip package, bin_env should be the path to the virtualenv or to the python binary that should be used. The pip command is unable to upgrade itself in Windows.
Prefer wheel archives (requires pip>=1.4)
Force to not use wheel archives (requires pip>=1.4,<10.0.0)
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 one or more package names with commas between them
Log file where a complete (maximum verbosity) record will be kept. If this file doesn't exist and the parent directory is writeable, it will be created.
Specify a proxy in the form user:passwd@proxy.server:port
. Note
that the user:password@
is optional and required only if you are
behind an authenticated proxy. If you provide
user@proxy.server:port
then you will be prompted for a password.
Note
If the Minion has a globaly configured proxy - it will be used
even if no proxy was set here. To explicitly disable proxy for pip
you should pass False
as a value.
Set the socket timeout (default 15 seconds)
install something editable (e.g.
git+https://github.com/worldcompany/djangoembed.git#egg=djangoembed
)
URL to search for packages
Base URL of Python Package Index
Extra URLs of package indexes to use in addition to index_url
Ignore package index
Specific mirror URL(s) to query (automatically adds --use-mirrors)
Warning
This option has been deprecated and removed in pip version 7.0.0.
Please use index_url
and/or extra_index_url
instead.
Unpack packages into build
dir
Install packages into target
dir
Download packages into download
instead of installing them
Cache downloaded packages in download_cache
or cache_dir
dir
Check out editable
packages into source
dir
Upgrade all packages to the newest available version
When upgrading, reinstall all packages even if they are already up-to-date.
Ignore the installed packages (reinstalling instead)
Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup
Ignore package dependencies
Download and unpack all packages, but don't actually install them
Don't download any packages, just install the ones already downloaded
(completes an install run with --no-install
)
Extra arguments to be supplied to the setup.py install command (e.g.
like --install-option='--install-scripts=/usr/local/bin'
). Use
multiple --install-option options to pass multiple options to setup.py
install. If you are using an option with a directory path, be sure to
use absolute path.
Extra global options to be supplied to the setup.py call before the install command.
The user under which to run pip
Directory from which to run pip
Include pre-releases in the available versions
Provide a path to an alternate CA bundle
Allow the installation of all externally hosted files
Allow the installation of externally hosted files (comma separated list)
Allow the installation of insecure and unverifiable files (comma separated list)
Enable the processing of dependency links
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. This must be in the form of a dictionary or a mapping.
Example:
salt '*' pip.install django_app env_vars="{'CUSTOM_PATH': '/opt/django_app'}"
Mark this host as trusted, even though it does not have valid or any HTTPS.
Use VT terminal emulation (see output while installing)
Disable the cache.
pip keyword and positional arguments not yet implemented in salt
salt '*' pip.install pandas extra_args="[{'--latest-pip-kwarg':'param'}, '--latest-pip-arg']"
Warning
If unsupported options are passed here that are not supported in a minion's version of pip, a No such option error will be thrown.
Will be translated into the following pip command:
pip install pandas --latest-pip-kwarg param --latest-pip-arg
Pip may periodically check PyPI to determine whether a new version of pip is available to download. Passing True for this option disables that check.
CLI Example:
salt '*' pip.install <package name>,<package2 name>
salt '*' pip.install requirements=/path/to/requirements.txt
salt '*' pip.install <package name> bin_env=/path/to/virtualenv
salt '*' pip.install <package name> bin_env=/path/to/pip_bin
Complicated CLI Example:
salt '*' pip.install markdown,django editable=git+https://github.com/worldcompany/djangoembed.git#egg=djangoembed upgrade=True no_deps=True
New in version 2018.3.0.
Changed in version 3006.0.
Filter list of installed modules and return True if pkgname
exists in
the list of packages installed.
CLI Example:
salt '*' pip.is_installed salt
Changed in version 3006.0.
Output list of installed apps from pip list
in JSON format and check to
see if prefix
exists in the list of packages installed.
Note
If the version of pip available is older than 9.0.0, parsing the
freeze
function output will be used to determine the name and
version of installed modules.
CLI Example:
salt '*' pip.list salt
New in version 2017.7.3.
List all available versions of a pip package
The package to check
Path to pip (or to a virtualenv). This can be used to specify the path
to the pip to use when more than one Python release is installed (e.g.
/usr/bin/pip-2.7
or /usr/bin/pip-2.6
. If a directory path is
specified, it is assumed to be a virtualenv.
Include alpha versions in the list
Include beta versions in the list
Include release candidates versions in the list
The user under which to run pip
Directory from which to run pip
Base URL of Python Package Index .. versionadded:: 2019.2.0
Additional URL of Python Package Index .. versionadded:: 2019.2.0
CLI Example:
salt '*' pip.list_all_versions <package name>
New in version 3006.0.
Filter list of installed apps from freeze
and check to see if
prefix
exists in the list of packages installed.
Note
If the version of pip available is older than 8.0.3, the packages
wheel
, setuptools
, and distribute
will not be reported by
this function even if they are installed. Unlike pip.freeze
, this function always reports the version of
pip which is installed.
CLI Example:
salt '*' pip.list_freeze_parse salt
Check whether or not an upgrade is available for all packages
CLI Example:
salt '*' pip.list_upgrades
Uninstall packages individually or from a pip requirements file
comma separated list of packages to install
Path to requirements file
Path to pip (or to a virtualenv). This can be used to specify the path
to the pip to use when more than one Python release is installed (e.g.
/usr/bin/pip-2.7
or /usr/bin/pip-2.6
. If a directory path is
specified, it is assumed to be a virtualenv.
Log file where a complete (maximum verbosity) record will be kept
Specify a proxy in the format user:passwd@proxy.server:port
. Note
that the user:password@
is optional and required only if you are
behind an authenticated proxy. If you provide
user@proxy.server:port
then you will be prompted for a password.
Note
If the Minion has a globaly configured proxy - it will be used
even if no proxy was set here. To explicitly disable proxy for pip
you should pass False
as a value.
Set the socket timeout (default 15 seconds)
The user under which to run pip
Directory from which to run pip
Use VT terminal emulation (see output while installing)
CLI Example:
salt '*' pip.uninstall <package name>,<package2 name>
salt '*' pip.uninstall requirements=/path/to/requirements.txt
salt '*' pip.uninstall <package name> bin_env=/path/to/virtualenv
salt '*' pip.uninstall <package name> bin_env=/path/to/pip_bin
New in version 2015.5.0.
Upgrades outdated pip packages.
Note
On Windows you can't update salt from pip using salt, so salt will be skipped
Returns a dict containing the changes.
- {'<package>': {'old': '<old-version>',
'new': '<new-version>'}}
CLI Example:
salt '*' pip.upgrade
New in version 2015.5.0.
Check whether or not an upgrade is available for a given package
CLI Example:
salt '*' pip.upgrade_available <package name>
New in version 0.17.0.
Returns the version of pip. Use bin_env
to specify the path to a
virtualenv and get the version of pip in that virtualenv.
If unable to detect the pip version, returns None
.
Changed in version 3001.1: The user
parameter was added, to allow specifying the user who runs
the version command.
CLI Example:
salt '*' pip.version