From fca06a47bd21dc6679d29af3534877f9c1d70805 Mon Sep 17 00:00:00 2001 From: "lal.harshita" Date: Wed, 2 Dec 2020 10:34:09 +0530 Subject: [PATCH] Dependency installation fixes Change-Id: I28ea8ef7900e5f2ca9e3231466dbc228dda06698 Signed-off-by: lal.harshita --- docs/README | 4 ++-- docs/installation-guide.rst | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/README b/docs/README index a82ab657c..742a102a8 100644 --- a/docs/README +++ b/docs/README @@ -26,10 +26,10 @@ B. Pre-requisite for Compilation : 2. GCC version 4.6.3 and above 3. Install LKSCTP a. On Ubuntu : sudo apt-get install -y libsctp-dev - b. On CentOS : yum install lksctp-tools-devel + b. On CentOS : sudo yum install -y lksctp-tools-devel 4. Install PCAP: a. On ubuntu : sudo apt-get install -y libpcap-dev - b. On CentOS : yum install libpcap-devel + b. On CentOS : sudo yum install -y libpcap-devel C. Pre-requisite for running O1 module: diff --git a/docs/installation-guide.rst b/docs/installation-guide.rst index d99fcd40a..f2e86be5b 100644 --- a/docs/installation-guide.rst +++ b/docs/installation-guide.rst @@ -79,8 +79,8 @@ Libraries Following libraries are required to compile and execute O-DU High: - GCC - - Ubuntu : sudo apt install build-essential - - CentOS : sudo yum group install "Development Tools" + - Ubuntu : sudo apt-get install -y build-essential + - CentOS : sudo yum groups mark install -y “Development Tools” Ensure the version is 4.6.3 and above using @@ -88,11 +88,11 @@ Following libraries are required to compile and execute O-DU High: - LKSCTP - Ubuntu : sudo apt-get install -y libsctp-dev - - CentOS : yum install lksctp-tools-devel + - CentOS : sudo yum install -y lksctp-tools-devel - PCAP: - Ubuntu : sudo apt-get install -y libpcap-dev - - CentOS : yum install libpcap-devel + - CentOS : sudo yum install -y libpcap-devel Cloning code -------------- -- 2.16.6