top of page
To see this working, head to your live site.
Unable to import chatterbot in Python
Unable to import chatterbot in Python
1 answer0 replies
Like
1 Comment
LinkedIn | Twitter | Instagram | Facebook | Pinterest | Chat with Us | Easy to connect with our innovation and creativity.
Consult Today | Knowledge hub | Thought leader| Technology| Ideas| Invention| Culture| Sports| Politics| Talk| Magazine| Interview| Blog| Quality Article| Global News|
bottom of page
The problem due to not unable to import, but unable to install.
Try installing the previous version of ChatterBot.
pip install chatterbot==1.0.4
note: There would be another problem if you are using Python 3.8.x . In Python 3.8.x, a few functions of a few modules were removed. You will be able to import ChattberBot , but when you name the bot, there will be an error in time.clock not found.
time_func = time.clock()
Instead of this change it to
time_func = time.perf_counter()