Most voted "chatterbot" questions
Chatterbot (or chatbot) is a computer program that attempts to simulate a human being in conversation with people. The goal is to answer the questions in such a way that people have the impression of being talking to another person and not with a computer program.
Learn more…17 questions
Sort by count of
-
3
votes1
answer302
viewsImport chatterbot bot to Telegram
I don’t know if that kind of question is welcome here, but come on: I’m developing a chatbot on python and chose the library chatterbot because of the processamento de linguagem natural, by the…
-
1
votes1
answer54
viewsCan a local chatbot be considered a P2P system?
At first I had made a chatbot that connected to Telegram, but as the message goes through a server I believe that it does not characterize as a p2p system (client, client). Then I made a chatbot…
-
0
votes1
answer786
viewsHow to add external training in chatterbot
I created a very simple bot to learn how to use chatterbot. This library already comes with a training, but I wanted to put an extra training with the import of a corpus in Portuguese that I found…
-
0
votes1
answer1968
viewsChatterbot installation error
I’m trying to install the chatterbot but am getting the following error: Command "python setup.py egg_info" failed with error code 1 in C: Users Mariana Appdata Local Temp Pip-install-r5apde_f Blis\…
-
0
votes1
answer448
viewsI’m having trouble creating a Chatbot in Python
from chatterbot import ChatBot from chatterbot.trainers import ChatterBotCorpusTrainer chatbot = ChatBot('HiAsda') #Cria um novo treinador para o bot trainer = ChatterBotCorpusTrainer(chatbot)…
-
0
votes1
answer577
viewsChatterbot installation error (python)
Every time I try to install Chatterbot either through Pip or pip3 it gives a giant error. I saw in some questions that when installing python 64bits it would solve, I did it but nothing. Even,…
-
0
votes0
answers238
viewsChatterbot from chatterbot import Chatbot Modulenotfounderror: No module named 'chatterbot'
from chatterbot import ChatBot ModuleNotFoundError: No module named 'chatterbot' I’ve updated the library chatterbot and the pip, I’ve also changed the address of path for…
-
0
votes0
answers250
viewsChatterbot import error
Using the library manual chatterbot I tried to make a simple chatbot, however, when I have it run on the console of pycharm appears the following error: Modulenotfounderror: No module named 'pytz'…
-
0
votes0
answers342
viewsImport error in Python
I’m trying to create a Python Bot: #-*- coding: utf-8 -*- from chatterbot.trainer import ListTrainer # trainador from chatterbot import ChatBot # chatbot import os bot = ChatBot('Teste')…
-
0
votes1
answer29
viewsError using a bot in python
Whenever I run the following code (using python) from chatterbot import ChatBot from chatterbot.trainers import ListTrainer bot = ChatBot('bot1') bot = ChatBot( 'bot1',…
-
-1
votes1
answer644
viewsError using chatterbot in python ('chatterbot' is not a package)
I made a basic code of Chatterbot in Python that ran well, but suddenly stopped working and always presents the same error: from chatterbot.trainers import Listtrainer Modulenotfounderror: No module…
-
-1
votes1
answer147
viewsInstallation of libraries in python
I’m trying to install the library chatterbot and the library pocketsphinx, but at installation time the prompt shows the following error: ERROR: Command errored out with exit status 1: command:…
-
-1
votes1
answer888
viewschatterbot_corpus module not found after installing chatterbot
Does anyone know what these mistakes can be? C:\Python37_64\venv\Scripts\python.exe C:/Python37_64/chat.py Traceback (most recent call last): File "C:/Python37_64/chat.py", line 1, in <module>…
-
-1
votes1
answer142
viewsI cannot use the python chatterbot library
I’m trying to create a bot for personal purposes so I tried to install the python chatterbot but when trying to run the code it accuses an error I already tried to install other versions of Python…
-
-2
votes2
answers716
viewsAttributeerror: str Object has no attribute 'Confidence'
I’m developing a chatbot and I wish it would only respond if it had determined level of confidence in the answer. # -*- codding: utf-8 -*- import os import telebot from chatterbot import ChatBot…
-
-3
votes1
answer201
viewsChatbot not understanding registered phrases
I’m developing a Chatbot called "Joker" for use in a Telegram group. The Bot must respond only if its name (Joker) is quoted in a sentence, otherwise it must remain "silent" without interfering with…
-
-5
votes1
answer75
viewsERROR STARTING . EXE PYTHON
Hello, I’m creating a chatbot in Python using the Chatterbot library, so I tried to turn my simple Python code into a file. exe so other people can test, I’m using pyinstaller. I installed it by…