16 lines
251 B
YAML
16 lines
251 B
YAML
- name: Install python3
|
|
apt:
|
|
name: python3
|
|
state: latest
|
|
|
|
- name: Install ipython
|
|
apt:
|
|
name:
|
|
- python3-ipython
|
|
- ipython3
|
|
state: latest
|
|
|
|
- name: Install generally useful libraries
|
|
apt:
|
|
name:
|
|
- python3-tqdm
|