question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

error:no module name 'en'

See original GitHub issue

no module name ‘en’ error is coming ``from chatterbot import ChatBot bot=ChatBot( ‘Friday’, storage_adapter=‘chatterbot.storage.SQLStorageAdapter’, #collect database logic_adapters=[ ‘chatterbot.logic.MathematicalEvaluation’, ‘chatterbot.logic.TimeLogicAdapter’ ‘chatterbot.logic.BestMatch’], database_uri=‘sqlite:///database.db’) print(‘Ask something!!’) while True: try: user_input = input() bot_response = bot.get_response(user_input) print(bot_response) except (KeyboardInterrupt, EOFError, SystemExit): break

Issue Analytics

  • State:open
  • Created 3 years ago
  • Comments:9

github_iconTop GitHub Comments

5reactions
bored-gamecommented, Sep 7, 2020

you do not have ‘en’ downloaded use python -m spacy download en. tell me if that works

1reaction
bored-gamecommented, Sep 7, 2020

or like the error says their is no module name spacy you may not have spacy installed have you installed it using pip install spacy?

Read more comments on GitHub >

github_iconTop Results From Across the Web

Import error with spacy: "No module named en" - Stack Overflow
For windows, open cmd with admin right. Then, python -m spacy download en. You should see the shell prompt stating. You can now...
Read more >
ModuleNotFoundError: no module named Python Error [Fixed]
How to fix the ModuleNotFoundError in Python · 1. Make sure imported modules are installed · 2. Make sure modules are spelled correctly...
Read more >
How to fix “ImportError: No module named …” error in Python?
1. Find the python installation location using the command where python in the command prompt.
Read more >
How to Fix ModuleNotFoundError and ImportError
In most of the cases, either of the errors occur due to the fact that Python is unable to resolve the module's name...
Read more >
ModuleNotFoundError: No module named 'click' in Python
The Python "ModuleNotFoundError: No module named 'click'" occurs when we forget to install the click module before importing it or install it in ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found