Skip to content

Installation

Shreyash Saitwal edited this page Mar 23, 2021 · 16 revisions

Prerequisites

Since App Inventor extensions are written in Java, you need to have the Java JDK version 8 or above installed on your system. To make sure you have the correct version of JDK installed, run java -version in your favorite terminal app. You should see an output similar to this:

$ java -version
java version "1.8.0_121"

Windows (64 bit)

  • Download rush.zip from the latest release.

  • Create a new directory C:\Rush. (You can create the directory in any drive and name it whatever you want.)

  • Unpack rush.zip into the newly created C:\Rush directory.

  • In File Explorer right-click on the This PC icon, then click Properties -> Advanced System Settings -> Environmental Variables.

  • Under System Variables select Path, then click Edit.

  • Add an entry for C:\Rush\bin.

  • Click OK to save.

  • Verify the installation by typing rush -v in the terminal.

macOS and Linux

  • Download rush-<your_os>.tar.gz from the latest release.

  • Unzip it in the directory of your choice, for example:

    $ mkdir /opt/rush
    $ unzip -d /opt/rush rush-linux.tar.gz
    
  • Configure your PATH variable to include rush/bin, like this:

    export PATH=$PATH:/opt/rush/bin
    
  • Verify the installation by typing rush -v in the terminal.

Clone this wiki locally