23 lines
406 B
YAML
23 lines
406 B
YAML
---
|
|
- name: install pip
|
|
apt:
|
|
name: "python3-pip"
|
|
state: present
|
|
|
|
- name: install python module dependencies via pip
|
|
pip:
|
|
name:
|
|
- toml
|
|
state: present
|
|
executable: pip3
|
|
|
|
- name: install python modules via pip
|
|
pip:
|
|
name:
|
|
- docker-compose
|
|
- git+https://github.com/jceb/screenconfig
|
|
- ipython
|
|
- powerline-status
|
|
state: present
|
|
executable: pip3
|