I checked out the financial-demo bot (master branch) following these steps:
python3 -m venv --system-site-packages ./venv
-
source ./venv/bin/activate
-
pip3 install rasa==1.9.3
-
git clone https://github.com/RasaHQ/financial-demo
-
cd financial-demo
-
pip install -r requirements.txt
-
python3 -m spacy download en_core_web_md
-
python3
-
import spacy
-
nlp=spacy.load("en_core_web_md")
-
exit()
-
rasa train
But I am getting this error.
Exception: Not all required importable packages are installed. To use this pipeline, you need to install the missing dependencies. Please install the package(s) that contain the module(s): spacy
Does somebody know how to fix it?