I am trying to buid a chatbot. so i installed chatterbot package. the python code is following:
from chatterbot import TalkWithCleverbot
talk = TalkWithCleverbot()
talk.begin()
but i am getting the following error:
Traceback (most recent call last):
File "C:\Users\JERIN\Desktop\bottobot.py", line 2, in <module>
talk = TalkWithCleverbot()
File "C:\Python27\lib\site-packages\chatterbot\__init__.py", line 157, in __init__
super(TalkWithCleverbot, self).__init__()
File "C:\Python27\lib\site-packages\chatterbot\__init__.py", line 4, in __init__
from jsondb.db import Database
ImportError: No module named db
I tried installing jsondb and db packages, but there is no good. Please help me