Ansible Role - Pip (for Python)
Go to file
Jeff Geerling 50c9b505d6 Actually make things work. 2017-05-26 23:15:50 -05:00
defaults Initial commit. 2017-05-26 23:09:47 -04:00
meta Initial commit. 2017-05-26 23:09:47 -04:00
tasks Actually make things work. 2017-05-26 23:15:50 -05:00
tests Some additional work on role tests. All blind on an airplane, wheeee. 2017-05-26 23:22:04 -04:00
.gitignore Initial commit. 2017-05-26 23:09:47 -04:00
.travis.yml Some additional work on role tests. All blind on an airplane, wheeee. 2017-05-26 23:22:04 -04:00
LICENSE Initial commit. 2017-05-26 23:09:47 -04:00
README.md Switch Travis CI Badge to this repo. 2017-05-26 23:07:36 -05:00

README.md

Ansible Role: Pip (for Python)

Build Status

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.