dotfiles/tasks/python.yml
2019-05-25 16:50:09 +01:00

21 lines
430 B
YAML

- name: "Install python packages"
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: "item not in installed_packages.stdout_lines"
with_items:
- 'pyenv'
- 'python-pip'
- 'python-virtualenv'
- 'python2-pip'
- 'python2-virtualenv'
- name: Create pyenv directory
file:
state: directory
path: '/opt/pyenv'
owner: "{{ user }}"
group: users