12 lines
		
	
	
		
			193 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			193 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
- name: install apt packages
 | 
						|
  become: true
 | 
						|
  apt:
 | 
						|
    name:
 | 
						|
      - python-is-python3
 | 
						|
      - python3
 | 
						|
      - python3-pip
 | 
						|
      - python3-venv
 | 
						|
      - python3-virtualenv
 | 
						|
    state: latest
 |