Hi @nik202
The versions you list seem to be incompatible according to pip:
rasa 3.0.2 requires sanic-routing<0.8.0,>=0.7.2, but you have sanic-routing 0.7.0 which is incompatible.
sanic 21.6.0 requires sanic-routing==0.7.0, but you have sanic-routing 0.7.2 which is incompatible.
When I run
pip install sanic==21.6.0 Sanic-Cors==1.0.0 sanic-jwt==1.7.0 sanic-plugin-toolkit==1.2.0 Sanic-Plugins-Framework==0.9.5 sanic-routing==0.7.0
I get
ERROR: Cannot install sanic-cors==1.0.0, sanic-plugin-toolkit==1.2.0, sanic-plugins-framework==0.9.5 and sanic==21.6.0 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested sanic==21.6.0
sanic-cors 1.0.0 depends on sanic<22 and >=21.3.1
sanic-plugin-toolkit 1.2.0 depends on sanic
sanic-plugins-framework 0.9.5 depends on sanic<21 and >=18.12.0
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/user_guide/#fixing-conflicting-dependencies