mirror of
https://github.com/geerlingguy/ansible-role-pip.git
synced 2024-11-16 10:45:11 +01:00
Ansible Role - Pip (for Python)
defaults | ||
meta | ||
tasks | ||
tests | ||
.gitignore | ||
.travis.yml | ||
LICENSE | ||
README.md |
Ansible Role: Pip (for Python)
An Ansible Role that installs Pip on Linux.
Requirements
None.
Role Variables
Available variables are listed below, along with default values (see defaults/main.yml
):
pip_install_packages: []
A list of packages to install with pip. Examples below:
pip_install_packages:
# Specify names and versions.
- name: docker-py
version: "1.2.3"
- name: awscli
version: "1.11.91"
# Or specify bare packages to get the latest release.
- docker-py
- awscli
Dependencies
None.
Example Playbook
- hosts: all
roles:
- geerlingguy.pip
License
MIT / BSD
Author Information
This role was created in 2017 by Jeff Geerling, author of Ansible for DevOps.