9 lines
197 B
YAML
9 lines
197 B
YAML
---
|
|
- name: Fetch pip installer
|
|
get_url:
|
|
url: https://bootstrap.pypa.io/get-pip.py
|
|
dest: /tmp/get-pip.py
|
|
|
|
- name: Install pip
|
|
command: "{{ ansible_python.executable }} /tmp/get-pip.py"
|