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

21 lines
335 B
YAML
Raw Normal View History

2018-10-12 22:44:28 +02:00
---
- name: install pip
apt:
name: "python3-pip"
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
- ipython
- powerline-status
2018-10-12 22:44:28 +02:00
state: present
executable: pip3