ImportError: cannot import name ‘chatBot‘ from ‘chatbot‘ (C:\Users\l\Pych

报错:
ImportError: cannot import name ‘chatBot’ from ‘chatbot’ (C:\Users\l\Pych
如下图所示:
在这里插入图片描述
Terminal中执行:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple chatterbot

并将报错文件app.py的第一行

from chatbot import chatbot

修改为:

from chatterbot import chatBot

猜你喜欢

转载自blog.csdn.net/weixin_47542175/article/details/114585201