10 lines
135 B
YAML
10 lines
135 B
YAML
|
---
|
||
|
- name: Install python env
|
||
|
pacman:
|
||
|
name: "{{ item }}"
|
||
|
state: present
|
||
|
with_items:
|
||
|
- python
|
||
|
- python-virtualenv
|
||
|
|