You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
819 B

3 years ago
# Installation
> **Note:** An installation of the Rust programming language is needed to compile Sabre.
## Cargo
The fastest way to get up and running is to install the [latest published version](https://crates.io/crates/sabre-lang) via cargo:
```sh
cargo install sabre-lang
```
3 years ago
## Git
To get the current development version, you can clone the Git [repository](https://github.com/garritfra/sabre) and run the following command:
3 years ago
```sh
cargo install --path .
```
## Docker
3 years ago
Sabre provides a [Docker image](https://hub.docker.com/r/garritfra/sabre). It currently only supports the x64 architecture. Please reach out if you need a ARM variant (needed for Raspberry Pi). If you don't want to wait, you can build the image yourself by running this command in the root of the project:
```
docker build . -t sabre
```