1
0
mirror of https://github.com/adlerosn/rede-especificacoes-tecnicas-em-redes synced 2024-07-05 17:00:12 +00:00
ufes-mestrado-projetopesqui.../Makefile

17 lines
498 B
Makefile
Raw Normal View History

2019-03-12 17:15:42 +00:00
all: virtualenv
. virtualenv/bin/activate ; python3 -m kbCreator
depends:
. virtualenv/bin/activate ; pip install -r requirements.txt
. virtualenv/bin/activate ; spacy download en
. virtualenv/bin/activate ; spacy download en_core_web_sm
. virtualenv/bin/activate ; spacy download en_core_web_md
. virtualenv/bin/activate ; spacy download en_core_web_lg
. virtualenv/bin/activate ; spacy download en_vectors_web_lg
virtualenv:
python3 -m virtualenv -p python3 virtualenv
make depends