0

I'm trying to build a chatbot using Snips NLU installed on my computer, but when I download the Languages resources this message appears:

Languages resources not linked

when trying to run the Quickstart from https://snips-nlu.readthedocs.io/en/latest/quickstart.html this error shows:

Language Resource Error

I would like to know what I am doing wrong or if I did a bad installation.

Also I want to use Spanish and English resources for different projects.

Liam roels
  • 154
  • 1
  • 14

2 Answers2

0

You may have some permission issue, as it seems that you are not using virtualenv.

The snips-nlu lib creates a symbolic link after resources are downloaded, which requires sufficient permissions.

Adrien Ball
  • 440
  • 1
  • 4
  • 14
0

The answer seems to be in your error itself. You simple need to run the below command on terminal

python -m snips_nlu download en

This will install the english dictionary resource which you have requested in your code.

Hope this helps :)

Nishkarsh Dixit
  • 137
  • 1
  • 10