Instale o ChatterBot Anaconda
#Create new conda environment with Python 3.7
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
BlueMoon