Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cli/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Okapi CLI
# Trinsic CLI

## Installation

### Using Homebrew
### Using Homebrew for MacOS and Linux

```
brew tap trinsic-id/trinsic
brew install trinsic
brew tap trinsic-id/trinsic-cli
brew install trinsic-cli
```

### Using Cargo
Expand Down
17 changes: 14 additions & 3 deletions docs/reference/setup/installation/install-cli.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
The CLI can be installed directly using the Cargo tool. This requires the [Rustup toolchain :material-open-in-new:](https://www.rust-lang.org/tools/install){target=_blank} installed on your system.
The CLI can be installed directly as binary or built from source.

## Using Homebrew for MacOS and Linux

```
brew tap trinsic-id/trinsic
brew install trinsic
```

## From source using the Rust toolchain

This requires the [Rustup toolchain :material-open-in-new:](https://www.rust-lang.org/tools/install){target=_blank} installed on your system.

Once installed, run this command in terminal:

```bash
cargo install --git https://github.com/trinsic-id/sdk.git --branch main
cargo +nightly install --git https://github.com/trinsic-id/sdk trinsic
```

To verify that the CLI has been installed successfully, try running:

```bash
trinsic --help
```
```