Add pip installation for Debian

This commit is contained in:
Fernando Schauenburg 2019-11-16 00:02:37 +00:00
parent 929102158b
commit ae0b15936e

View file

@ -2,7 +2,8 @@
- name: Install python3 (Debian)
when: ansible_os_family == "Debian"
become: yes
apt: name=python3 state=latest update_cache=yes
apt: name={{ item }} state=latest update_cache=yes
loop: [python3, python3-pip]
- name: Install python3 (macOS)
when: ansible_os_family == "Darwin"