rasa-demo
rasa-demo copied to clipboard
Failed to register package actions.actions.
Traceback (most recent call last):
File "/home/abhilash/.local/lib/python3.6/site-packages/rasa_sdk/executor.py", line 254, in register_package
self._import_submodules(package)
File "/home/abhilash/.local/lib/python3.6/site-packages/rasa_sdk/executor.py", line 210, in _import_submodules
package = self._import_module(package)
File "/home/abhilash/.local/lib/python3.6/site-packages/rasa_sdk/executor.py", line 231, in _import_module
module = importlib.import_module(name)
File "/usr/lib/python3.6/importlib/init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "
I am getting this error on running run actions. On first look it seems like an error with spacy loading en module. I have installed the spacy module but the error seems to persist. Any help would be appreciated.
Thanks for the issue, @alopez will get back to you about it soon!
You may find help in the docs and the forum, too 🤗
Hey @programmeddeath1, have a look at #580. In short, you'll need to install an English Spacy model:
python -m spacy download en_core_web_md
python -m spacy link en_core_web_md en
However, bear in mind that some bits of the Sara bot won't run locally as they require special API keys (such as the docs search in action_docs_search that follows after the technical_question intent).