From 66278cc7e4f2e25001a33e10639a4958b125d9ba Mon Sep 17 00:00:00 2001 From: Webster Mudge Date: Thu, 2 Nov 2023 16:35:38 -0400 Subject: [PATCH] Update README for minimum Python version for ansible-navigator (Python 3.9 or higher) Signed-off-by: Webster Mudge --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7d49eb2..ec33a4f 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,8 @@ To use the projects in `cloudera-deploy`, you need to first set up `ansible-navi You can name your virtual environment anything you want; by convention, we like to call it `cdp-navigator`. ```bash - python -m venv ~/cdp-navigator; source ~/cdp-navigator/bin/activate; + # Note! You will need Python 3.9 or higher! + python3.9 -m venv ~/cdp-navigator; source ~/cdp-navigator/bin/activate; ``` This step is _highly recommended_ yet optional.