hey comm, trying to install on ubuntu using : : pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple. i get this error No matching distribution found for tensorflow<2.2,>=2.1 (from rasa<2.0.0,>=1.9.5->rasa-x) using tf 2.1 , rasa 1.9.5, py 3.6.9
Hey @Youssef-0
I think you need to update the setup-tools for python. This dockerfile demonstrates “from the scratch” installation:
from ubuntu:18.04
RUN apt-get update -qq
RUN apt-get install python3-pip -qq
RUN python3 -m pip install --upgrade pip setuptools
RUN pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple
1 Like