(fix) Added task to install pip3

Added task to install pip3 addres the zuul issue not finding pip.
The zuul job airship-shipyard-airskiff-deployment failes with:
sudo -H -E pip install 'cmd2<=08.7'
sudo: pip: command not found

Change-Id: Ib43aced2c054ecc38b2ce61377b735543c0a9f9f
This commit is contained in:
Mahmoudi, Ahmad (am495p) 2020-06-23 21:28:49 +00:00
parent fb9cc9a65e
commit c13c9940dc
1 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,12 @@
daemon_reload: yes
name: systemd-resolved
become: yes
- name: ensure pip3 installed
apt:
name: "{{ item }}"
with_items:
- python3-pip
become: yes
- name: Clone Required Repositories
shell: |