@@ -124,4 +124,47 @@ This needs to be done from an Interactive R console as R will ask wheather to us
install.packages(readLines("packages.list"))
```
This will install all the packages required. When asked if you want to use a personal library say yes and accept the defaults.
\ No newline at end of file
This will install all the packages required. When asked if you want to use a personal library say yes and accept the defaults.
## Bot Setup
In order to setup and run the [Rasa Bot](https://rasa.com/docs/) we recommend to use a [conda](https://conda.io/docs/user-guide/getting-started.html#managing-environmentsß) environment again with Python 3.6.7
```
conda create -n rasa_env python=3.6.7
source activate rasa_env
```
You need to install [Rasa Core](https://rasa.com/docs/core/installation/) and [Rasa NLU](https://rasa.com/docs/nlu/installation/) to run the Bot
```
pip install rasa_nlu
pip install rasa_core
```
Install the pipeline
```
pip install sklearn_crfsuite
pip install spacy
python -m spacy download en_core_web_md
python -m spacy link en_core_web_md en
```
Now you can train and run the bot
```
cd rasa/
make train
```
```
make run
```
Run in [Debug Mode](https://rasa.com/docs/core/debugging/) for more logging