Hello, While training my model for the assistant, I encountered an error while training NLU model. I tried installing tensorflow-text but I keep receiving: “ERROR: Could not find a version that satisfies the requirement tensorflow-text (from versions: none) ERROR: No matching distribution found for tensorflow-text”
I had this same issue because I was using python 3.8 for the environment. Maybe check and see. If you are using 3.8 downgrade to 3.7 maybe.
There are only wheels available for tensorflow-text for python 3.5 through 3.7. Just create your venv using one of these python versions and you should be good.
Thank you all, I have created the environment using python 3.6. Still getting the error.
Did you do
pip install rasa[convert]
I believe TensorFlowtxt is not installed with just pip install rasa. To install it you have to add the [convert]
tag
Yes I did, got this: “ERROR: Could not find a version that satisfies the requirement tensorflow_text==2.1.0rc0; extra == “convert” or extra == “full” (from rasa[convert]) (from versions: none) ERROR: No matching distribution found for tensorflow_text==2.1.0rc0; extra == “convert” or extra == “full” (from rasa[convert])”
I believe TensorFlowText is not available on windows yet. What if you try installing it in a linux vm or machine?