CentOS 8 installation script Fixed a problem

Added centos installation guide in README.md
pull/569/head
Tony Jabbour 2021-08-18 11:18:26 +02:00
parent d218be48e0
commit 819a645d6d
2 changed files with 12 additions and 3 deletions

View File

@ -81,10 +81,18 @@ Installation
Type these command lines for a fully automated installation and start AIL framework:
```bash
# Clone the repo first
git clone https://github.com/ail-project/ail-framework.git
cd ail-framework
# For Debian and Ubuntu based distributions
./installing_deps.sh
# For Centos based distributions (Tested: Centos 8)
chmod u+x centos_installing_deps.sh
./centos_installing_deps.sh
# Launch ail
cd ~/ail-framework/
cd bin/
./LAUNCH.sh -l

View File

@ -2,9 +2,10 @@
# halt on errors
set -e
sudo yum update
sudo yum -y -q install epel-release python3-pip virtualenv python3-devel python3-tkinter freetype-devel screen
yum -y -q install freetype-devel gcc gcc-c++ gcc-toolset-9-toolchain tk-devel unzip cmake
yum -y -q --enablerepo=powertools install snappy-devel
sudo yum -y -q install epel-release python3-pip virtualenv python3-devel python3-tkinter freetype-devel
sudo yum -y -q install screen
sudo yum -y -q install freetype-devel gcc gcc-c++ gcc-toolset-9-toolchain tk-devel unzip cmake
sudo yum -y -q --enablerepo=powertools install snappy-devel
#Needed for downloading jemalloc
sudo yum -y -q install wget