From 863e7288e83fa544c00b7d0eb647562d9f4c0ff8 Mon Sep 17 00:00:00 2001 From: Ivan Date: Sat, 13 Jan 2024 17:14:35 +0500 Subject: [PATCH] feat(dev-playbook): install python --- playbooks/dev.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/playbooks/dev.yml b/playbooks/dev.yml index 9b24e7a..e324e3b 100644 --- a/playbooks/dev.yml +++ b/playbooks/dev.yml @@ -24,3 +24,10 @@ ansible.builtin.apt: name: golang default_release: bookworm-backports + - name: Install python + become: true + ansible.builtin.apt: + pkg: + - python3 + - python3-venv + - python3-pip