A chatbot is a computer software able to interact with humans using a natural language. They usually rely on machine learning, especially on NLP.
You’re only going to install the library ChatterBot for now. I recommend creating and using a new Python virtual environment for this purpose. Execute the following commands in your Python terminal:
run these command:
pip install chatterbot
pip install chatterbot_corpus
You can also try upgrading them:
pip install --upgrade chatterbot_corpus
pip install --upgrade chatterbot
That’s it. We’re ready to go.
You can communicate with your bot using its method .get_response(). Here’s an example of how that might look like :