Pip install -r requirements.txt

Hello. I am trying to build a chatbot where I can use the grakn or knowledge graph. Then I saw this RASA. So I want to try this. However, I cannot proceed because when I try to install the requirements.txt, it always says, "pip install -r requirements.txt ERROR: Could not open requirements file: [Errno 2] No such file or directory: ‘requirements.txt’ " Can someone help me out with this? I would really appreciate it.

Hi @jayarbarts,

can you post your directory structure as a screenshot? This simply means that the file, you want to install dependencies from, does not exist. Most likely due to the location, you are calling the command from.

I assume you downloaded the Rasa repository from Github!? If so, try to use:

pip install rasa
rasa init  

instead. Rasa init downloads a skeletton for your first bot. I recommend you to read the Getting started section of rasa.

Regards Julian

Thank you.