aboutsummaryrefslogtreecommitdiffstats
path: root/roles/setup_python/tasks/main.yml
blob: 033981d39f07e7af7def4f18eaf2fa9aa54eda7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

# =========================================================================== #
#                   __                      __  __              
#       _________  / /__       ____  __  __/ /_/ /_  ____  ____ 
#      / ___/ __ \/ / _ \     / __ \/ / / / __/ __ \/ __ \/ __ \
#     / /  / /_/ / /  __/    / /_/ / /_/ / /_/ / / / /_/ / / / /
#    /_/   \____/_/\___(_)  / .___/\__, /\__/_/ /_/\____/_/ /_/ 
#                          /_/    /____/
#
# =========================================================================== #

---
- name: Check installation of python3-pip
  package:
    name: python3-pip
    state: present

- name: Check installation of lxml
  package:
    name: python-lxml
    state: present
remember that computers suck.