Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created May 19, 2020 17:49
Show Gist options
  • Select an option

  • Save linuxbiekaisar/25e1f27142e200bac7e75df0ea40b5ad to your computer and use it in GitHub Desktop.

Select an option

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
@AnythingLinux
Copy link
Copy Markdown

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