Problem with mulidict version when installing Rasa X in windows 10 local environment

SOLUTION: To install Rasa X locally on Windows 10 resolving the multidict and asyncio error messages is achieved through the following steps in a powershell or conda console:

  1. conda create -n “Your_Environment_Name” python=3.8
  2. conda activate Your_Environment_Name
  3. pip install pip==20.2 --user
  4. pip install multidict==4.7.6 --use-feature=2020-resolver
  5. pip install pyjwt==2.0.0 --use-feature=2020-resolver
  6. pip install sanic==20.9.0 --use-feature=2020-resolver
  7. pip3 install rasa==2.6.2
  8. pip3 install rasa-sdk==2.6.0
  9. pip install rasa-x==0.40.0 --extra-index-url https://pypi.rasa.com/simple
  10. SET http_proxy=http://localhost:5002
  11. SET https_proxy=http://localhost:5002
  12. rasa x

Thanks to @nik202 for this solution.