A Python-based chatbot designed to provide conversational responses.
Make sure you have Python 3.12 installed on your system. You can download it from the official Python website.
Ensure that you have pip
installed on your system. Follow the pip installation guide if it's not already installed.
To install the chatbot-lite
package directly from the GitHub repository, use the following command:
pip install chatbot-lite
If you encounter SSL certificate issues while making requests, you may need to set up your environment to use proper certificates. You can do this by running the following commands:
CERT_PATH=$(python -m certifi)
export SSL_CERT_FILE=${CERT_PATH}
export REQUESTS_CA_BUNDLE=${CERT_PATH}
To execute the chatbot, simply run the main.py
file:
python main.py