This repository has been archived on 2021-04-04. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-server/roles/python/tasks/pip.yml

16 lines
235 B
YAML

---
- name: install pip
apt:
name:
- python3-pip
- python-setuptools # YEAH!
state: present
- name: install python modules via pip
pip:
name:
- docker-compose
state: present
executable: pip3