This repository has been archived on 2020-08-28. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-laptop/roles/prog/tasks/python.yml

16 lines
256 B
YAML

---
- name: install pip
apt:
name: "python3-pip"
state: present
- name: install python modules via pip
pip:
name: "{{ item }}"
state: present
executable: pip3
with_items:
- docker-compose
- ipython
- powerline-status