在python 3.x中使用chatterbot时出现错误

时间:2019-03-12 05:03:39

标签: python chatbot chatterbot

这是我的代码:

from chatterbot.trainers import ListTrainer
from chatterbot import chatbot
bot = chatbot('Dona')
conv = open('sample.txt', 'r').readlines()
bot.set_trainer(ListTrainer)
bot.train(conv)
while True:
    query = input("You: ")
    reply = bot.get_response(query)
    print("Bot: ", response)

我收到此错误,我认为它无法导入程序

enter code here

from pytz import UTC
ModuleNotFoundError: No module named 'pytz'

这是错误的最后一行。

1 个答案:

答案 0 :(得分:2)

在您的python环境中安装pytz

$finalArray[$usepassArray[$i]] = $usepassArray[$i + 1];