xoxys.python3/tasks/setup.yml

29 lines
716 B
YAML
Raw Normal View History

2018-11-27 22:58:22 +01:00
---
- block:
- name: Install python 3 package
package:
name: "{{ item }}"
state: present
with_items:
- python36
2018-11-27 23:07:17 +01:00
- name: Check for installed pip3
stat:
path: /usr/local/bin/pip3.6
register: __python3_pip
2018-11-27 22:58:22 +01:00
- name: Setup pip3
command: /bin/python3.6 -m ensurepip
2018-11-27 23:07:17 +01:00
changed_when: __python3_pip.stat.exists
2018-11-27 22:58:22 +01:00
- name: Link binaries to '__python3_link_bin_path'
file:
src: "{{ item.src }}"
dest: "{{ __python3_link_bin_path }}/{{ item.dest }}"
state: link
with_items:
- { src: /bin/python3.6, dest: python3 }
- { src: /usr/local/bin/pip3.6, dest: pip3 }
become: True
become_user: root