Ansible Role - Pip (for Python)
Go to file
Jeff Geerling cee6952975 Update molecule configuration to work with 3.0. 2020-02-20 15:56:01 -06:00
.github YAML syntax fix. 2019-12-11 10:40:04 -06:00
defaults PR #18 follow-up: Adjust docs for pip executable var. 2018-11-10 15:04:29 -06:00
meta PR #19 follow-up: Adjust license field to read 'MIT'. 2019-10-23 09:59:49 -05:00
molecule/default Update molecule configuration to work with 3.0. 2020-02-20 15:56:01 -06:00
tasks add ability to use the role on CentOS 7 2018-11-10 11:22:20 +01:00
.gitignore Switch tests to use Molecule. 2018-09-30 20:14:02 -05:00
.travis.yml Update molecule configuration to work with 3.0. 2020-02-20 14:24:10 -06:00
.yamllint Update molecule configuration to work with 3.0. 2020-02-20 14:30:12 -06:00
LICENSE Initial commit. 2017-05-26 23:09:47 -04:00
README.md PR #18 follow-up: Adjust docs for pip executable var. 2018-11-10 15:04:29 -06:00

README.md

Ansible Role: Pip (for Python)

Build Status

An Ansible Role that installs Pip on Linux.

Requirements

On RedHat/CentOS, you may need to have EPEL installed before running this role. You can use the geerlingguy.repo-epel role if you need a simple way to ensure it's installed.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

pip_package: python-pip

The name of the packge to install to get pip on the system. You can set to python3-pip, for example, when using Python 3 on Ubuntu.

pip_executable: pip

The role will try to autodetect the pip executable based on the pip_package (e.g. pip for Python 2 and pip3 for Python 3). You can also override this explicitly, e.g. pip_executable: pip3.6.

pip_install_packages: []

A list of packages to install with pip. Examples below:

pip_install_packages:
  # Specify names and versions.
  - name: docker
    version: "1.2.3"
  - name: awscli
    version: "1.11.91"

  # Or specify bare packages to get the latest release.
  - docker
  - awscli

  # Or uninstall a package.
  - name: docker
    state: absent

  # Or update a package ot the latest version.
  - name: docker
    state: latest

  # Or force a reinstall.
  - name: docker
    state: forcereinstall

  # Or install a package in a particular virtualenv.
  - name: docker
    virtualenv: /my_app/venv

Dependencies

None.

Example Playbook

- hosts: all

  vars:
    pip_install_packages:
      - name: docker
      - name: awscli

  roles:
    - geerlingguy.pip

License

MIT / BSD

Author Information

This role was created in 2017 by Jeff Geerling, author of Ansible for DevOps.