From 629710c63c329b407228c478f5075877ed50c11e Mon Sep 17 00:00:00 2001 From: Maksim Malchuk Date: Mon, 12 Dec 2022 19:07:56 +0300 Subject: [PATCH] Add git package to the list of dependencies In the quickstart there is need the git package to install kolla-ansible from the source for deployment or evaluation and to clone repository for development. Closes-Bug: #1999370 Change-Id: Ia623694c801c03b151944947141551ecbc1d24f5 Signed-off-by: Maksim Malchuk --- doc/source/user/quickstart.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/user/quickstart.rst b/doc/source/user/quickstart.rst index 743a968193..be83650bc6 100644 --- a/doc/source/user/quickstart.rst +++ b/doc/source/user/quickstart.rst @@ -52,13 +52,13 @@ execution, which is described in .. code-block:: console - sudo dnf install python3-devel libffi-devel gcc openssl-devel python3-libselinux + sudo dnf install git python3-devel libffi-devel gcc openssl-devel python3-libselinux For Debian or Ubuntu, run: .. code-block:: console - sudo apt install python3-dev libffi-dev gcc libssl-dev + sudo apt install git python3-dev libffi-dev gcc libssl-dev Install dependencies using a virtual environment ------------------------------------------------