mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
1379ef705a
AIL is a modular framework to analyse potential information leak from unstructured data source like pastes from Past ebin or similar services. AIL framework is flexible and can be extended to support other functionalities to mine sen sitive information
20 lines
No EOL
314 B
Bash
20 lines
No EOL
314 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install python-pip
|
|
sudo apt-get install python-virtualenv
|
|
sudo apt-get install python-dev
|
|
sudo apt-get install libfreetype6-dev
|
|
|
|
|
|
virtualenv AILENV
|
|
|
|
. ./AILENV/bin/activate
|
|
|
|
pip install -r requirements.txt --upgrade
|
|
|
|
python -m textblob.download_corpora |