Aleema
(Aleema Irin)
September 7, 2020, 12:06pm
1
Hi
I am installing rasa in ubundu
i tried to install using this command
pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple
But showing error
Could not find a version that satisfies the requirement tensorflow-addons<0.8.0,>=0.7.1 (from rasa<2.0.0,>=1.9.5->rasa-x) (from versions: )
No matching distribution found for tensorflow-addons<0.8.0,>=0.7.1 (from rasa<2.0.0,>=1.9.5->rasa-x)
Can anyone help me from this… i am stuck here…
Currently you cannot use Rasa-X with rasa 2.0 alpha releases. To use Rasa-X you’ll need rasa V1.
You can follow the below steps to install rasa-x as a docker container.
sudo apt update && sudo apt upgrade
curl -sSL -o install.sh https://storage.googleapis.com/rasa-x-releases/0.32.0/install.sh
sudo bash ./install.sh
cd /etc/rasa
sudo docker-compose up -d
sudo python3 rasa_x_commands.py create --update admin me <ADMIN_PASSWORD>
sudo mkdir actions
sudo touch actions/__init__.py
sudo nano actions/actions.py
sudo nano docker-compose.override.
docker-compose.override. contents
version: '3.4'
services:
app:
image: 'rasa/rasa-sdk:latest'
volumes:
- './actions:/app/actions'
expose:
- '5055'
depends_on:
- rasa-production
Run the app
sudo docker-compose up -d
For more details please see official docs
akelad
(Akela Drissner)
September 8, 2020, 2:04pm
3
Hi @Aleema which version of python are you running on at the moment?