16 lines
256 B
YAML
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
|