Skip to content

Instantly share code, notes, and snippets.

@alshell7
Last active October 6, 2020 10:33
Show Gist options
  • Save alshell7/a8b9fdc6c56faceffb25f02a83bbed54 to your computer and use it in GitHub Desktop.
Save alshell7/a8b9fdc6c56faceffb25f02a83bbed54 to your computer and use it in GitHub Desktop.
Superfast & clean install Rasa and Rasa X on fresh Ubuntu 16.04

Installing Docker and Docker Compose

wget -O - https://gist.githubusercontent.com/wdullaer/f1af16bd7e970389bad3/raw/install.sh | bash

Installing Rasa X

curl -s get-rasa-x.rasa.com | sudo bash

Installing Rasa and setting up the bot

mkdir -m 777 newbot

cd newbot

docker run -it -v $(pwd):/app rasa/rasa:1.10.0-full init

@alshell7
Copy link
Author

alshell7 commented Oct 6, 2020

Installing with the custom settings and action server:

export INITIAL_USER_PASSWORD="techtwerlo123"
export ACTION_SERVER_IMAGE="twerlo/actions-poc-avokado"
export ACTION_SERVER_TAG="latest"
export DEBUG_MODE="true"
export RASA_X_VERSION="0.31.5"
export RASA_VERSION="1.10.14"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment