ModuleNotFoundError: No module named 'chatterbot_corpus' error
See original GitHub issuei was running a the basic example code from \examples:
`
**_from chatterbot import ChatBot from chatterbot.trainers import ListTrainer
Create a new chat bot named Charlie
chatbot = ChatBot(‘Charlie’)
trainer = ListTrainer(chatbot)
trainer.train([ “Hi, can I help you?”, “Sure, I’d like to book a flight to Iceland.”, “Your flight has been booked.” ])
Get a response to the input text ‘I would like to book a flight.’
response = chatbot.get_response(‘I would like to book a flight.’)
print(response)
`_**
Your work is great so pls respond fastly! Thanks!
Issue Analytics
- State:
- Created 4 years ago
- Comments:15 (1 by maintainers)
Top Results From Across the Web
python - cannot properly import the chatterbot and its corpus
For error, No module named 'chatterbot_corpus' install chatterbot_corpus by running pip install chatterbot-corpus. For more info click PyPi.
Read more >ModuleNotFoundError: No module named 'chatterbot-corpus'
After the installation of chatterbot-corpus python library, ModuleNotFoundError: No module named 'chatterbot-corpus' error will be solved.
Read more >Chatterbot_corpus is installed but still getting the error ... - Reddit
Chatterbot_corpus is installed but still getting the error "ModuleNotFoundError: No module named 'chatterbot_corpus' ".
Read more >chatterbot/Lobby - Gitter
import spacy ModuleNotFoundError: No module named 'spacy'. When installing the module named spacy I get an error to load. Officially made me crazy....
Read more >pip install chatterbot error
It is a PIP installation Error! ChatterBot can not be installed with PIP cmd. For every module that can not be installed with...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I fixed it myself. pip install chatterbot-coprus worked for me
@gunthercox @orfeous I am having the same issue of #no module named chatterbot corpus, must i pip install chatterbot-corpus to be able to train the chatterbot? Or will pip install chatterbot alone do everything