Add pip installation for Debian
This commit is contained in:
parent
929102158b
commit
ae0b15936e
1 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,8 @@
|
||||||
- name: Install python3 (Debian)
|
- name: Install python3 (Debian)
|
||||||
when: ansible_os_family == "Debian"
|
when: ansible_os_family == "Debian"
|
||||||
become: yes
|
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)
|
- name: Install python3 (macOS)
|
||||||
when: ansible_os_family == "Darwin"
|
when: ansible_os_family == "Darwin"
|
||||||
|
|
Loading…
Add table
Reference in a new issue