error:no module name 'en'
See original GitHub issueno 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:
- Created 3 years ago
- Comments:9
Top 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 >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
No results found
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
you do not have ‘en’ downloaded use
python -m spacy download en
. tell me if that worksor like the error says
their is no module name spacy
you may not have spacy installed have you installed it usingpip install spacy
?