Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 576 Bytes

setup_without_docker.md

File metadata and controls

16 lines (9 loc) · 576 Bytes

Setup without Docker

To run our system without using docker, follow the RUN commands in the Dockerfile up until

RUN python3 -m spacy download en_core_web_sm

Then set the DATA_DIR variable in the Makefile to the directory in which you want to store the ELEVANT data files.

In src/settings.py add your data directory to the _DATA_DIRECTORIES list.

Finally, run

export PYTHONPATH=$PYTHONPATH:src

to add elevant's src directory to your python path in your current shell or add this command to your .bashrc file, to add it permanently.