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

22 lines
343 B
YAML
Raw Normal View History

2018-10-12 22:44:28 +02:00
---
- name: install pip
apt:
2019-02-21 19:22:49 +01:00
name:
- python-pip
- python3-pip
2018-10-12 22:44:28 +02:00
state: present
2018-11-02 12:46:03 +01:00
- name: install python modules via apt
apt:
name:
- python3-systemd
state: present
2018-10-12 22:44:28 +02:00
- name: install python modules via pip
pip:
2018-10-28 10:55:05 +01:00
name:
- docker-compose
- powerline-status
state: latest
2018-10-12 22:44:28 +02:00
executable: pip3