Skip to content

Instantly share code, notes, and snippets.

@Clement-TS
Created June 7, 2019 14:32
Show Gist options
  • Save Clement-TS/a4193b83408b65365125124cfeeba59b to your computer and use it in GitHub Desktop.
Save Clement-TS/a4193b83408b65365125124cfeeba59b to your computer and use it in GitHub Desktop.
---
- name: Prepare
hosts: all
gather_facts: false
tasks:
- name: Install python3
apt:
name: "{{ packages }}"
vars:
packages:
- python3-minimal
- python3-zipstream
- python3-setuptools
- python3-pip
become: true
- name: use python3 by default
alternatives:
name: python
link: /usr/bin/python
path: /usr/bin/python3
- name: use pip3 by default
alternatives:
name: pip
link: /usr/bin/pip
path: /usr/bin/pip3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment