23 lines
360 B
YAML
23 lines
360 B
YAML
---
|
|
- name: install pip
|
|
apt:
|
|
name:
|
|
- python-pip
|
|
- python3-pip
|
|
state: present
|
|
|
|
- name: install python modules via apt
|
|
apt:
|
|
name:
|
|
- python3-systemd
|
|
state: present
|
|
|
|
- name: install python modules via pip
|
|
pip:
|
|
name:
|
|
- docker-compose
|
|
- ipython
|
|
- powerline-status
|
|
state: present
|
|
executable: pip3
|