Install multiple python libs with pip



Published: 2018-07-10 09:42:56 +0000
Categories: Ansible,

Language

Ansible

Description

When installing multiple python libraries with pip, you might not want each to be an individual named task within ansible. This method allows you to have a single ansible task and install multiple libraries along with their dependancies (they'll still be installed sequentially)

Snippet

- name: Install Python Dependancies with Pip
  pip: name={{item}} state=present
  with_items:
    - lib1
    - lib2
    - lib3

Usage Example

- name: Install Python Dependancies
  pip: name={{item}} state=present
  with_items:
    - flask
    - werkzeug
    - bcrypt
    - gnupg
    - pyopenssl
  tags: deps

Keywords

ansible, pip, multiple, with_items,

Latest Posts


Copyright © 2022 Ben Tasker | Sitemap | Privacy Policy
Available at snippets.bentasker.co.uk, http://phecoopwm6x7azx26ctuqcp6673bbqkrqfeoiz2wwk36sady5tqbdpqd.onion and http://snippets.bentasker.i2p
hit counter