Skip to content

Instantly share code, notes, and snippets.

@Belrestro
Created May 15, 2019 15:28
Show Gist options
  • Save Belrestro/0b6142cbbbd7b2ed2303eea50cd42f50 to your computer and use it in GitHub Desktop.
Save Belrestro/0b6142cbbbd7b2ed2303eea50cd42f50 to your computer and use it in GitHub Desktop.
not so specific guide how to run core on a specific branch
# assuming you have pyhton 3.7-stretch
DIR=./
git clone --branch tags/0.14.3 git@github.com:RasaHQ/rasa_core.git $DIR \
&& cd $DIR
pip install pip==19.1
pip install -r requirements.txt
# you cannot run server without a domain
python -m rasa_core.train -d examples/concertbot/domain.yml -s examples/concertbot/data/stories.md -o test
python -m rasa_core.run -d test --enable_api -p 5002
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment