mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix install
This commit is contained in:
parent
7f5596328f
commit
cd6734f704
2 changed files with 5 additions and 5 deletions
|
@ -26,8 +26,11 @@ sudo apt-get install libev-dev libgmp-dev -y
|
||||||
#Need for generate-data-flow graph
|
#Need for generate-data-flow graph
|
||||||
sudo apt-get install graphviz -y
|
sudo apt-get install graphviz -y
|
||||||
|
|
||||||
|
# install nosetests
|
||||||
|
sudo pip install nose -y
|
||||||
|
|
||||||
# ssdeep
|
# ssdeep
|
||||||
sudo apt-get install libfuzzy-dev
|
sudo apt-get install libfuzzy-dev -y
|
||||||
sudo apt-get install build-essential libffi-dev automake autoconf libtool -y
|
sudo apt-get install build-essential libffi-dev automake autoconf libtool -y
|
||||||
|
|
||||||
# REDIS #
|
# REDIS #
|
||||||
|
@ -108,8 +111,5 @@ HOME=$(pwd) python3 -m textblob.download_corpora
|
||||||
python3 -m nltk.downloader vader_lexicon
|
python3 -m nltk.downloader vader_lexicon
|
||||||
python3 -m nltk.downloader punkt
|
python3 -m nltk.downloader punkt
|
||||||
|
|
||||||
# install nosetests
|
|
||||||
sudo pip install nose
|
|
||||||
|
|
||||||
#Create the file all_module and update the graph in doc
|
#Create the file all_module and update the graph in doc
|
||||||
$AIL_HOME/doc/generate_modules_data_flow_graph.sh
|
$AIL_HOME/doc/generate_modules_data_flow_graph.sh
|
||||||
|
|
|
@ -816,9 +816,9 @@ def tag_galaxy_info():
|
||||||
|
|
||||||
synonyms = []
|
synonyms = []
|
||||||
metadata = []
|
metadata = []
|
||||||
|
list_metadata = []
|
||||||
try:
|
try:
|
||||||
meta = data['meta']
|
meta = data['meta']
|
||||||
list_metadata = []
|
|
||||||
for key in meta:
|
for key in meta:
|
||||||
if key != 'synonyms':
|
if key != 'synonyms':
|
||||||
if type(meta[key]) is list:
|
if type(meta[key]) is list:
|
||||||
|
|
Loading…
Reference in a new issue