ail-framework/installing_deps.sh

86 lines
1.9 KiB
Bash
Raw Normal View History

#!/bin/bash
set -e
set -x
sudo apt-get update
2014-08-22 12:52:02 +00:00
sudo apt-get install python-pip python-virtualenv python-dev libfreetype6-dev \
2016-07-19 16:13:25 +00:00
screen g++ python-tk unzip libsnappy-dev cmake
#Needed for bloom filters
2014-08-18 11:40:07 +00:00
sudo apt-get install libssl-dev libfreetype6-dev python-numpy
2014-08-18 11:40:07 +00:00
# DNS deps
sudo apt-get install libadns1 libadns1-dev
2014-08-25 12:44:40 +00:00
#Needed for redis-lvlDB
sudo apt-get install libev-dev libgmp-dev
#needed for mathplotlib
test ! -L /usr/include/ft2build.h && sudo ln -s freetype2/ft2build.h /usr/include/
sudo easy_install -U distribute
# REDIS #
test ! -d redis/ && git clone https://github.com/antirez/redis.git
2014-08-18 11:40:07 +00:00
pushd redis/
2016-07-19 16:13:25 +00:00
git checkout 3.2
make
2014-08-18 11:40:07 +00:00
popd
2016-07-19 16:13:25 +00:00
# Faup
2016-07-25 09:38:41 +00:00
test ! -d faup/ && git clone https://github.com/stricaud/faup.git
2016-07-19 16:13:25 +00:00
pushd faup/
test ! -d build && mkdir build
cd build
cmake .. && make
sudo make install
echo '/usr/local/lib' | sudo tee -a /etc/ld.so.conf.d/faup.conf
sudo ldconfig
popd
# REDIS LEVEL DB #
test ! -d redis-leveldb/ && git clone https://github.com/KDr2/redis-leveldb.git
2014-08-18 11:40:07 +00:00
pushd redis-leveldb/
git submodule init
git submodule update
make
2014-08-18 11:40:07 +00:00
popd
if [ ! -f bin/packages/config.cfg ]; then
cp bin/packages/config.cfg.sample bin/packages/config.cfg
fi
2016-07-25 09:38:41 +00:00
mkdir -p $AIL_HOME/{PASTES,Blooms,dumps}
mkdir -p $AIL_HOME/LEVEL_DB_DATA/2016
2016-07-25 09:38:41 +00:00
pushd var/www/
./update_thirdparty.sh
popd
2014-08-22 12:52:02 +00:00
2016-07-25 09:38:41 +00:00
if [ -z "$VIRTUAL_ENV" ]; then
2014-08-22 12:52:02 +00:00
2016-07-25 09:38:41 +00:00
virtualenv AILENV
echo export AIL_HOME=$(pwd) >> ./AILENV/bin/activate
echo export AIL_BIN=$(pwd)/bin/ >> ./AILENV/bin/activate
echo export AIL_FLASK=$(pwd)/var/www/ >> ./AILENV/bin/activate
echo export AIL_REDIS=$(pwd)/redis/src/ >> ./AILENV/bin/activate
echo export AIL_LEVELDB=$(pwd)/redis-leveldb/ >> ./AILENV/bin/activate
. ./AILENV/bin/activate
fi
2016-02-04 14:24:18 +00:00
pip install -U pip
2016-07-25 09:38:41 +00:00
pip install -U -r pip_packages_requirement.txt
2014-08-22 12:52:02 +00:00
2016-07-19 16:13:25 +00:00
# Pyfaup
pushd faup/src/lib/bindings/python/
python setup.py install
popd
2014-08-22 12:52:02 +00:00
# Download the necessary NLTK corpora
HOME=$(pwd) python -m textblob.download_corpora