Skip to content

Setup Without Docker

Natalie Prange edited this page Oct 31, 2024 · 3 revisions

To run ELEVANT 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 and do the same for the data_directory field in the file config/elevant.config.json.

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.

Clone this wiki locally