-
Notifications
You must be signed in to change notification settings - Fork 25
Installation
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"
-
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 createdC:\Rush
directory. -
In
File Explorer
right-click on theThis PC
icon, then clickProperties
->Advanced System Settings
->Environmental Variables
. -
Under
System Variables
selectPath
, then clickEdit
. -
Add an entry for
C:\Rush\bin
. -
Click
OK
to save. -
Verify the installation by typing
rush -v
in the terminal.
-
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.