RUN apt-get update && apt-get install python3.6 python3-pip -y
RUN pip3 install pip --upgrade
RUN pip3 install rasa
RUN pip3 install rasa[spacy]
RUN python3.6 -m spacy download en_core_web_md
RUN python3.6 -m spacy link en_core_web_md en
ERROR: Could not find a version that satisfies the requirement tensorflow-addons<0.8.0,>=0.7.1 (from rasa) (from versions: 0.10.0)
ERROR: No matching distribution found for tensorflow-addons<0.8.0,>=0.7.1 (from rasa)
@puser1986 - Piyush, a possible resolution can be found on the below thread. They recommend you downgrade to 3.6.8 version of Python. Tensorflow-addons
I had the same problem with Python 3.8.2. I installed 3.7.0 and was able to run on a virtualenv without any problems. Keep trying with different python versions.
I had the same problem. What I did was uninstall Python completely and then I installed Anaconda. From there I launched PyCharm and chose Python interpreter as Anaconda. It worked for me after that.