It used to work, but now I get the following error after this: conda env create -f environment_dev.yml
Error:
The conflict is caused by:
rasa 1.7.4 depends on sanic-cors==0.9.9.post1
rasa-sdk 1.7.0 depends on sanic-cors<0.11.0 and >=0.10.0b1
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
I’m not sure why this would have worked before - indeed there is a clash. Is it feasible for you to update your project to an up-to-date Rasa version? There is a migration guide
The conflict is caused by:
The user requested sanic-cors==0.9.9.post1
rasa 1.7.4 depends on sanic-cors==0.9.9.post1
rasa-sdk 1.7.0 depends on sanic-cors<0.11.0 and >=0.10.0b1
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
Sure, I want to migrate to a higher version. But before I can do it, I have to run the old version one last time. Only then, I am ready to start migration.
I wonder why the env-file worked for such a long time…
maybe an easy workaround is to just pull the source of the rasa-sdk from github, manually edit the requirements file in there, and then install locally with pip install -e . from inside the rasa-sdk dir.