Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 820 Bytes

install.md

File metadata and controls

27 lines (19 loc) · 820 Bytes

<- Back to Index

LRSPipe Installation

From Release Distribution

LRSPipe can be downloaded as cross-platform standalone application. You can download xapipe from our release page or on the command line:

curl -L https://github.com/yetanalytics/xapipe/releases/latest/download/xapipe.zip -o xapipe.zip
unzip xapipe.zip -d xapipe
cd xapipe
bin/run.sh --help

Build from Source

If you would like to build LRSPipe from the source code in this repository, you will need Java JDK 11+ and Clojure 1.10+. Clone the repository and from the root directory run the following:

make bundle
cd target/bundle
bin/run.sh --help

For basic usage instructions please see the usage page.

<- Back to Index