mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: Added missing python3 dependencies for alertHandler (running under
p3 for pymisp)
This commit is contained in:
parent
abdf41fe23
commit
bfa35a2e23
2 changed files with 16 additions and 1 deletions
|
@ -13,7 +13,6 @@ sudo apt-get install libssl-dev libfreetype6-dev python-numpy -y
|
||||||
|
|
||||||
#pyMISP
|
#pyMISP
|
||||||
sudo apt-get -y install python3-pip
|
sudo apt-get -y install python3-pip
|
||||||
sudo pip3 install pymisp
|
|
||||||
|
|
||||||
# DNS deps
|
# DNS deps
|
||||||
sudo apt-get install libadns1 libadns1-dev -y
|
sudo apt-get install libadns1 libadns1-dev -y
|
||||||
|
@ -95,6 +94,7 @@ mkdir -p $AIL_HOME/LEVEL_DB_DATA/{$year1,$year2}
|
||||||
|
|
||||||
pip install -U pip
|
pip install -U pip
|
||||||
pip install -U -r pip_packages_requirement.txt
|
pip install -U -r pip_packages_requirement.txt
|
||||||
|
pip3 install -U -r pip3_packages_requirement.txt
|
||||||
|
|
||||||
# Pyfaup
|
# Pyfaup
|
||||||
pushd faup/src/lib/bindings/python/
|
pushd faup/src/lib/bindings/python/
|
||||||
|
@ -105,6 +105,8 @@ popd
|
||||||
pushd tlsh/py_ext
|
pushd tlsh/py_ext
|
||||||
python setup.py build
|
python setup.py build
|
||||||
python setup.py install
|
python setup.py install
|
||||||
|
python3 setup.py build
|
||||||
|
python3 setup.py install
|
||||||
|
|
||||||
# Download the necessary NLTK corpora and sentiment vader
|
# Download the necessary NLTK corpora and sentiment vader
|
||||||
HOME=$(pwd) python -m textblob.download_corpora
|
HOME=$(pwd) python -m textblob.download_corpora
|
||||||
|
|
13
pip3_packages_requirement.txt
Normal file
13
pip3_packages_requirement.txt
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
pymisp
|
||||||
|
|
||||||
|
redis
|
||||||
|
filemagic
|
||||||
|
crcmod
|
||||||
|
mmh3
|
||||||
|
ssdeep
|
||||||
|
tlsh
|
||||||
|
nltk
|
||||||
|
textblop
|
||||||
|
|
||||||
|
pubsublogger
|
||||||
|
zmq
|
Loading…
Reference in a new issue