11 lines
144 B
YAML
11 lines
144 B
YAML
|
- name: Install python3
|
||
|
apt:
|
||
|
name: python3
|
||
|
state: latest
|
||
|
|
||
|
- name: Install ipython
|
||
|
apt:
|
||
|
name: python3-ipython
|
||
|
state: latest
|
||
|
|