dotfiles/tasks/python.yml
Jake Howard 94d483e7b7
Stop manually skipping packages
It's now a bit faster, and I can live with it. This is also much simpler now!
2020-06-15 12:33:03 +01:00

19 lines
331 B
YAML

- name: Install python packages
aur:
name: "{{ item }}"
become: true
become_user: aur_builder
loop:
- pyenv
- python-pip
- python-virtualenv
- python2-pip
- python2-virtualenv
- name: Create pyenv directory
file:
state: directory
path: /opt/pyenv
owner: "{{ user }}"
group: users