Commit 4528585e7be786ed62590047a94a3619b3ee307a

Authored by Erickson Silva
1 parent ffd8e900
Exists in master and in 1 other branch devel

Adiciona tgrep como dependência e coloca o NLTK para ser instalado pelo pip

Showing 1 changed file with 1 additions and 4 deletions   Show diff stats
install/linux/aelius_install.sh
... ... @@ -19,16 +19,13 @@ read -r -p "Deseja fazer o download das dependências? [Y/n] " response
19 19  
20 20 echo -e "# Instalando dependências...\n"
21 21 sudo apt-get install -y python-dev python-setuptools python-yaml python-numpy python-matplotlib
  22 + sudo pip install nltk nltk_tgrep
22 23  
23   - cd nltk-3.0.0/
24   -
25   - sudo python setup.py install
26 24 fi
27 25  
28 26 read -r -p "Deseja limpar os arquivos temporários? [Y/n] " response
29 27 response=${response,,} # tolower
30 28 if [[ $response =~ ^(yes|y| ) ]]; then
31   - cd ..
32 29 rm ~/vlibras-libs/aelius/aelius-install.tar.gz
33 30 fi
34 31  
... ...