From: lal.harshita Date: Wed, 2 Dec 2020 05:04:09 +0000 (+0530) Subject: Dependency installation fixes X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=fca06a47bd21dc6679d29af3534877f9c1d70805;hp=135666f5b7d048c76f68c15bd0c6b6566d1e49e2;p=o-du%2Fl2.git Dependency installation fixes Change-Id: I28ea8ef7900e5f2ca9e3231466dbc228dda06698 Signed-off-by: lal.harshita --- 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 --------------