Commit 4528585e7be786ed62590047a94a3619b3ee307a
1 parent
ffd8e900
Exists in
master
and in
1 other branch
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,16 +19,13 @@ read -r -p "Deseja fazer o download das dependências? [Y/n] " response | ||
19 | 19 | ||
20 | echo -e "# Instalando dependências...\n" | 20 | echo -e "# Instalando dependências...\n" |
21 | sudo apt-get install -y python-dev python-setuptools python-yaml python-numpy python-matplotlib | 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 | fi | 24 | fi |
27 | 25 | ||
28 | read -r -p "Deseja limpar os arquivos temporários? [Y/n] " response | 26 | read -r -p "Deseja limpar os arquivos temporários? [Y/n] " response |
29 | response=${response,,} # tolower | 27 | response=${response,,} # tolower |
30 | if [[ $response =~ ^(yes|y| ) ]]; then | 28 | if [[ $response =~ ^(yes|y| ) ]]; then |
31 | - cd .. | ||
32 | rm ~/vlibras-libs/aelius/aelius-install.tar.gz | 29 | rm ~/vlibras-libs/aelius/aelius-install.tar.gz |
33 | fi | 30 | fi |
34 | 31 |