ChatterBot error- OSError: [E941] Cant find model en from chatterbot import ChatBot from chatterbot trainers import ChatterBotCorpusTrainer chatbot = ChatBot('Ron Obvious') trainer = ChatterBotCorpusTrainer(chatbot) trainer train("chatterbot corpus english") chatbot get_response("Hello, how are you today?") And here is the error:
python - Can not install chatterbot in Anaconda - Stack Overflow conda create --name chatterbot_example python=3 7 Activate the environment: source activate chatterbot_example Install chatterbot and chatterbot-corpus inside the environment: pip install chatterbot pip install chatterbot-corpus Create a basic shown in Chatterbot Documentation (example py):
Python could not find module named chatterbot - Stack Overflow There is a dedicated Github repo for Chatterbot, and I found the issue Not able to import chatterbot after successful installation #826 Several other users had the same problems after installing Chatterbot via pip, so you might want to read the responses the developers gave them
How can I train my chatterbot in Python with `Chatterbot` module from chatterbot import ChatBot from chatterbot conversation import Statement """ This example shows how to create a chat bot that will learn responses based on an additional feedback element from the user