mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
Update of installing_deps.sh and pip_requirement.txt
This commit is contained in:
parent
d1d4b2ebe0
commit
5bc0f154f9
2 changed files with 49 additions and 7 deletions
49
installing_deps.sh
Normal file → Executable file
49
installing_deps.sh
Normal file → Executable file
|
@ -9,12 +9,55 @@ sudo apt-get install python-pip
|
|||
sudo apt-get install python-virtualenv
|
||||
sudo apt-get install python-dev
|
||||
sudo apt-get install libfreetype6-dev
|
||||
|
||||
sudo apt-get install screen
|
||||
|
||||
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
|
||||
|
||||
sudo apt-get install g++
|
||||
sudo apt-get install python-tk
|
||||
|
||||
#Needed for bloom filters
|
||||
sudo apt-get install libssl-dev
|
||||
|
||||
sudo apt-get install libfreetype6-dev
|
||||
sudo apt-get install python-numpy
|
||||
|
||||
#needed for mathplotlib
|
||||
test ! -L /usr/include/ft2build.h && sudo ln -s freetype2/ft2build.h /usr/include/
|
||||
|
||||
. ./AILENV/bin/activate
|
||||
|
||||
pip install -r requirements.txt --upgrade
|
||||
pip install -r pip_packages_requirement.txt --upgrade
|
||||
|
||||
python -m textblob.download_corpora
|
||||
pip install -U textblob
|
||||
python -m textblob.download_corpora
|
||||
|
||||
# REDIS #
|
||||
test ! -d redis/ && git clone https://github.com/antirez/redis.git
|
||||
cd redis/
|
||||
git checkout 2.8
|
||||
git pull
|
||||
make
|
||||
|
||||
echo export AIL_REDIS = $(pwd)/src/ >> ./AILENV/bin/activate
|
||||
|
||||
# REDIS LEVEL DB #
|
||||
cd $AIL_HOME
|
||||
test ! -d redis-leveldb/ && git clone https://github.com/KDr2/redis-leveldb.git
|
||||
cd redis-leveldb/
|
||||
git submodule init
|
||||
git submodule update
|
||||
|
||||
cd $AIL_HOME
|
||||
mkdir -p PASTES
|
||||
mkdir -p Blooms
|
||||
mkdir -p dumps
|
||||
|
||||
mkdir -p LEVEL_DB_DATA
|
||||
cd LEVEL_DB_DATA
|
||||
mkdir -p 2014
|
||||
mkdir -p 2013
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
redis
|
||||
pyzmq
|
||||
dnspython
|
||||
logbook
|
||||
|
||||
|
||||
#Graph
|
||||
numpy
|
||||
|
@ -9,7 +11,6 @@ matplotlib
|
|||
networkx
|
||||
|
||||
#Tokeniser
|
||||
-U textblob
|
||||
nltk
|
||||
|
||||
# Hashlib
|
||||
|
@ -19,8 +20,6 @@ mmh3
|
|||
#Others
|
||||
python-magic
|
||||
|
||||
|
||||
#optionnal
|
||||
ipython
|
||||
flask
|
||||
texttable
|
||||
texttable
|
||||
|
|
Loading…
Reference in a new issue