chatterbot

why it says I don't have admin privilage to install chatterbot?

why it says I don't have admin privilage to install chatterbot? Question: I tried to install chatterbot on my up to date python, pip didn’t work, everything including running as administrator and every other thing that I don’t remember. so I went to here: C:UsersaliAppDataLocalPackagesPythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0 with CMD, and did a git clone thing and a …

Total answers: 1

ChatterBot error- OSError: [E941] Can't find model 'en'

ChatterBot error- OSError: [E941] Can't find model 'en' Question: I tried running my first Chatterbot program (its from the PyPi page of Chatterbot), and when I run it, I get an error. The error is related to Spacy, but I am unable to find a solution. Here is the code: from chatterbot.trainers import ChatterBotCorpusTrainer chatbot …

Total answers: 8

How to install ChatterBot successfully?

How to install ChatterBot successfully? Question: I tried pip install ChatterBot and ended up with error. I am using Python 3.8 64 bit rc1. I do have installed all build tools. Please help me! Here is the powershell snippet – Collecting ChatterBot Using cached ChatterBot-1.0.5-py2.py3-none-any.whl (67 kB) Collecting pymongo<4.0,>=3.3 Downloading pymongo-3.10.1-cp38-cp38-win_amd64.whl (355 kB) |████████████████████████████████| 355 …

Total answers: 1

ImportError: cannot import name 'chatbot' from 'chatterbot'

ImportError: cannot import name 'chatbot' from 'chatterbot' Question: hey guys I’m getting this error, trying to build a chatbot Traceback (most recent call last): File “C:UsersEdwrdAppDataLocalProgramsPythonPython37-32FRIDAY.py”, line 2, in <module> from chatterbot import Chatbot ImportError: cannot import name ‘Chatbot’ from ‘chatterbot’ (C:UsersgabriAppDataLocalProgramsPythonPython37libsite-packageschatterbot__init__.py) Asked By: user11866502 || Source Answers: You need to use from chatterbot import …

Total answers: 3