dotfiles/tasks/python.yml

20 lines
346 B
YAML
Raw Normal View History

- name: Install python packages
2019-03-14 21:34:29 +00:00
aur:
name: "{{ item }}"
become: true
become_user: aur_builder
loop:
- pyenv
- python-pip
- python-virtualenv
- python2-pip
- python2-virtualenv
2019-03-14 21:34:29 +00:00
2019-05-25 16:50:09 +01:00
- name: Create pyenv directory
file:
2019-03-14 21:34:29 +00:00
state: directory
path: /opt/pyenv
2019-03-14 21:34:29 +00:00
owner: "{{ user }}"
group: users
2020-11-25 12:11:10 +00:00
mode: 0644