Commit b2dd8ea1590aff9dbf551dee098e10218594cf9f
1 parent
532686a6
Exists in
devel
Adiciona criação da variavel de ambiente 'TRANSLATE_DATA' no script de instalação
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
scripts/linux/install.sh
... | ... | @@ -54,6 +54,10 @@ read -r -p "Deseja criar as variáveis de ambiente? [Y/n] " response |
54 | 54 | echo -e "\nAELIUS_DATA=\"$HOME/vlibras-libs/aelius/aelius_data\"" >> ~/.bashrc |
55 | 55 | echo -e "export AELIUS_DATA" >> ~/.bashrc |
56 | 56 | |
57 | + # path to Aelius Data | |
58 | + echo -e "\nTRANSLATE_DATA=\"$HOME/vlibras-translate/data\"" >> ~/.bashrc | |
59 | + echo -e "export TRANSLATE_DATA" >> ~/.bashrc | |
60 | + | |
57 | 61 | # path to NLTK Data |
58 | 62 | echo -e "\nNLTK_DATA=\"$HOME/vlibras-libs/aelius/nltk_data\"" >> ~/.bashrc |
59 | 63 | echo -e "export NLTK_DATA" >> ~/.bashrc | ... | ... |