Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created May 19, 2020 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxbiekaisar/25e1f27142e200bac7e75df0ea40b5ad to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/25e1f27142e200bac7e75df0ea40b5ad to your computer and use it in GitHub Desktop.
How to install rasa in ubuntu 18.04 LTS
#! /bin/sh
# Check if your Python environment is already configured:
$ python3 --version
$ pip3 --version
# If not installed then run the command for installing them
$ sudo apt update
$ sudo apt install python3-dev python3-pip
# Create a virtual environment
$ python3 -m venv ./venv
$ source ./venv/bin/activate
# Install Rasa Open Source
$ pip install -U pip
$ pip install rasa
# To run rasa shell run the command
rasa shell
@UbuntuEvangelist
Copy link

how to develop rasa chatbot using ubuntu 18.04

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