piscreen/install-python3-deb.yml

8 lines
174 B
YAML

- hosts: all
gather_facts: False
become: yes
tasks:
- name: install python 3
raw: test -e /usr/bin/python || (apt -y update && apt install -y python3-minimal)