# golem-cli
Command line interface for Golem and [Golem Cloud](https://golem.cloud).
See also golem-cli in [Golem](https://github.com/golemcloud/golem).
## Installation
To install `golem-cli` you currently need to use `cargo`, Rust's build tool.
To get `cargo` on your system, we recommend to use [rustup](https://rustup.rs/):
```shell
rustup default stable
```
Another external dependency is `protobuf`, with a minimum version of `3.15`,
which can be installed as described on http://google.github.io/proto-lens/installing-protoc.html. On macOS, you can install it with Homebrew:
```shell
brew install protobuf
```
Then you can install `golem-cloud-cli` with the following command:
```shell
cargo install golem-cloud-cli
```
To install universal version of `golem-cli` - add feature `universal`:
```shell
cargo install golem-cloud-cli --features universal
```
## More information
Please check the [Golem Cloud developer documentation portal](https://learn.golem.cloud) to learn more about how to get started with _Golem Cloud_!