AIL-framework/installing_deps.sh

51 lines
1.2 KiB
Bash
Raw Normal View History

#!/bin/bash
set -e
set -x
sudo apt-get update
2014-08-22 14:52:02 +02:00
sudo apt-get install python-pip python-virtualenv python-dev libfreetype6-dev \
screen g++ python-tk
#Needed for bloom filters
2014-08-18 13:40:07 +02:00
sudo apt-get install libssl-dev libfreetype6-dev python-numpy
2014-08-18 13:40:07 +02:00
# DNS deps
sudo apt-get install libadns1 libadns1-dev
#needed for mathplotlib
test ! -L /usr/include/ft2build.h && sudo ln -s freetype2/ft2build.h /usr/include/
# REDIS #
test ! -d redis/ && git clone https://github.com/antirez/redis.git
2014-08-18 13:40:07 +02:00
pushd redis/
git checkout 2.8
make
2014-08-18 13:40:07 +02:00
popd
# REDIS LEVEL DB #
test ! -d redis-leveldb/ && git clone https://github.com/KDr2/redis-leveldb.git
2014-08-18 13:40:07 +02:00
pushd redis-leveldb/
git submodule init
git submodule update
2014-08-18 13:40:07 +02:00
popd
2014-08-22 14:52:02 +02:00
virtualenv AILENV
2014-08-22 14:52:02 +02:00
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
mkdir -p $AIL_HOME/{PASTES,Blooms,dumps}
2014-08-18 13:40:07 +02:00
mkdir -p $AIL_HOME/LEVEL_DB_DATA/{2014,2013}
2014-08-22 14:52:02 +02:00
pip install -r pip_packages_requirement.txt
# Download the necessary NLTK corpora
HOME=$(pwd) python -m textblob.download_corpora