Commit 04de0cea02bd2d5ec841758a187fb1c660376b16
1 parent
c04daa4d
Exists in
master
and in
1 other branch
Adiciona apt-get update no instalador do Linux
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
@@ -18,7 +18,8 @@ read -r -p "Deseja fazer o download das dependências? [Y/n] " response | @@ -18,7 +18,8 @@ read -r -p "Deseja fazer o download das dependências? [Y/n] " response | ||
18 | tar -xf aelius-install.tar.gz -C . | 18 | tar -xf aelius-install.tar.gz -C . |
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-pip python-yaml python-numpy python-matplotlib | 21 | + sudo apt-get -qq update |
22 | + sudo apt-get install -y -qq python-dev python-setuptools python-pip python-yaml python-numpy python-matplotlib | ||
22 | sudo pip install nltk nltk_tgrep --upgrade | 23 | sudo pip install nltk nltk_tgrep --upgrade |
23 | 24 | ||
24 | fi | 25 | fi |
@@ -54,4 +55,4 @@ read -r -p "Deseja criar as variáveis de ambiente? [Y/n] " response | @@ -54,4 +55,4 @@ read -r -p "Deseja criar as variáveis de ambiente? [Y/n] " response | ||
54 | echo -e "\n## Execute o seguinte comando para concluir:\n\n$ source ~/.bashrc\n" | 55 | echo -e "\n## Execute o seguinte comando para concluir:\n\n$ source ~/.bashrc\n" |
55 | fi | 56 | fi |
56 | 57 | ||
57 | -echo -e "### Instalação finalizada!" | ||
58 | \ No newline at end of file | 58 | \ No newline at end of file |
59 | +echo -e "### Instalação finalizada!" |