I encountered several problems while attempting to run the Django example. The first one is <frozen importlib._bootstrap>, which I somehow fixed with installing django-bootstrap3 (but pip warns potential uncompetible).
Also, what the README.rst suggests, running python manage.py runserver 0.0.0.0:8000 won't succeed. I only loaded a page with the localhost IP address. Then Django gave errors concerning MIDDLEWARE, which is a key not even exist in settings.py (but MIDDLEWARE_CLASSES).
I followed Django's suggestion and finally successfully loaded the interface. However, the bot won't respond to my input. The terminal outputs: django.db.utils.OperationalError: no such table: django_chatterbot_statement.
I have given up. There must be many undiscovered problems behind all of these! Help!
This is my environment by
pip list
:I encountered several problems while attempting to run the Django example. The first one is
<frozen importlib._bootstrap>
, which I somehow fixed with installingdjango-bootstrap3
(but pip warns potential uncompetible).Also, what the README.rst suggests, running
python manage.py runserver 0.0.0.0:8000
won't succeed. I only loaded a page with the localhost IP address. Then Django gave errors concerningMIDDLEWARE
, which is a key not even exist insettings.py
(butMIDDLEWARE_CLASSES
).I followed Django's suggestion and finally successfully loaded the interface. However, the bot won't respond to my input. The terminal outputs: django.db.utils.OperationalError: no such table: django_chatterbot_statement.
I have given up. There must be many undiscovered problems behind all of these! Help!