To make this project work, you need python 3.5.
You need to install the requirements:
pip install -r requirements.txt
You also need to download the nltk stopwords and english words. Open a python console and type:
import nltk
nltk.download("stopwords")
nltk.download("words")
nltk.download("wordnet")