Rasa x installation on windows 10 is uncompleted I’m using python= 3.7.6 conda=4.8
Are you still having this problem? If so, what command are you using?
I used the command “pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple” to run rasa X locally using conda
The new version of pip
does that. You have two options to solve that:
- Downgrade
pip
:pip install --upgrade pip==20.2
, - Or add
--use-deprecated=legacy-resolver
to the command.
1 Like
it’s working now. thank you very much
1 Like