From d8aaf025af5741c2b6630852f1020d5e77b53d69 Mon Sep 17 00:00:00 2001 From: Thomas Maurice Date: Wed, 6 Dec 2023 09:12:50 +0100 Subject: [PATCH] fix(setup): update python install --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index b1465d0..000c302 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,11 @@ Firstly you need to export some environment variables in your working terminal t export https_proxy=http://proxy.polytech-lille.fr:3128 ``` +Also, depending on the operating system installed on your virtual machines (Ubuntu server should not have the issue, Debian might), you should install python 3: +``` +# apt install python3 +``` + ### The virtualenv Since Ansible is written in python and we don't want to install it in the system, you will need to create a virtual environment. These are used to have your python stuff installed, without making them available system-wide, we are doing this to avoid polluting your lab machine with things that won't be used after today.