- Python 3
- Django
- Celery[v3.1.24]:
$ pip install celery==3.1.24 - Redis
- Run
$ pip install -r requirements.txtto install otherr requirements - nltk dependencies 'brown', 'punkt', 'wordnet'
$ python >>> import nltk >>> nltk.download('brown') >>> nltk.download('punkt') >>> nltk.download('wordnet')
- Run
$ redis-server - Open another terminal in the project folder and run
$ python manage.py runserver - Open another terminal in the project folder and run
$ celery worker -A Evaluation --loglevel=debug --concurrency=4 - Use ngork to access from other pc.