1
0
mirror of https://github.com/adlerosn/rede-especificacoes-tecnicas-em-redes synced 2024-07-03 07:40:13 +00:00
ufes-mestrado-projetopesqui.../Makefile
2019-03-12 14:15:42 -03:00

17 lines
498 B
Makefile

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