No module named

Hey, I just started with Rasa and when want to run “python nlu_model.py”, I became an error : “File “nlu_model.py”, line 1, in from rasa_nlu.training_data import load_data ModuleNotFoundError: No module named ‘rasa_nlu.training_data’”

I’m using Rasa_NLU version 13.7 and Rasa_CORE 0.11.12

Please help me solve this!

So far it looks like you’re trying to import a function called ‘load_data’ from a module rasa_nlu.training_data, which seems to be not existing on your computer. Have you installed rasa_nlu as described here: Installation ?

yes, Installation was successful

Have you tried executing the line that causes the error in your environment’s python shell? I mean this import statement:

What happens if you execute this line in your shell? Does it also throw an error?

I have no error executing this line

Hmm. Very weird, can you share your directory structure: Is it possible there’s a folder in your project directory that is in conflict with the rasa_nlu.training_data