0

I'm following the Rasa Core "Building a simple Bot" tutorial. (https://core.rasa.com/tutorial_basics.html) It requires the installation of the SpaCy Language model:

python -m spacy download en_core_web_md

However, I get "AttributeError: module 'thinc.linalg' has no attribute 'Mat'"

Have you any idea what is causing this?

Paul Kremershof
  • 131
  • 1
  • 2
  • 8
  • 1
    Could you run `pip list` and check which versions of spaCy, Thinc and numpy you have installed? It's possible that something is incompatible here and/or didn't install correctly. – Ines Montani Jun 26 '18 at 14:56

1 Answers1

1

Latest Spacy has a requirement of thinc as:

thinc>=6.10.1,<6.11.0

Double check the requirements.txt and check which modules are installed with pip list. If the issue is with incorrect version of thinc then run

pip uninstall thinc
pip install thinc==6.10.1
0x5050
  • 1,221
  • 1
  • 17
  • 32