Merge pull request #123 from TonyJabbour/master

CentOS 8 installation script Fixed a problem
pull/569/head
Alexandre Dulaunoy 2021-08-18 11:47:49 +02:00 committed by GitHub
commit 829a37ff95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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