diff --git a/README.md b/README.md index 53fb49ef..9f866317 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/centos_installing_deps.sh b/centos_installing_deps.sh index a53fcf99..27d3d85f 100644 --- a/centos_installing_deps.sh +++ b/centos_installing_deps.sh @@ -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