Ansible_workstation/tasks/arch_programming.yml

22 lines
346 B
YAML
Raw Normal View History

---
- name: Install python env
pacman:
name:
- python
- python-virtualenv
2019-05-16 19:02:12 +00:00
- python-pip
- python2
- python2-virtualenv
- python2-pip
2018-12-17 11:25:30 +00:00
- graphviz
2019-05-14 18:07:06 +00:00
- python-black
2019-06-27 14:36:11 +00:00
- pyenv
state: present
- name: Install yarn and node js
pacman:
name:
- nodejs
- yarn
state: present