ansible-role-common/tasks/python-debian.yml
2020-03-24 00:55:53 +01:00

8 lines
No EOL
266 B
YAML

---
- name: Install Python3
raw: test -e /usr/bin/python3 || (apt update && apt install -y --force-yes python3)
changed_when: false
- name: Install pip3
raw: test -e /usr/bin/pip3 || (apt update && apt install -y --force-yes python3-pip)
changed_when: false