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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ Every AICR recipe is:
Install and generate your first recipe in under two minutes:

```bash
# Install the CLI
# Install the CLI (Homebrew)
brew tap NVIDIA/aicr
brew install aicr

# Or use the install script
curl -sfL https://raw.githubusercontent.com/NVIDIA/aicr/main/install | bash -s --

# Capture your cluster's current state
Expand Down
5 changes: 5 additions & 0 deletions demos/valid.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
Download the latest binary and verify version:

```shell
# Homebrew (macOS/Linux)
brew tap NVIDIA/aicr
brew install aicr

# Or use the install script
curl -sfL https://raw.githubusercontent.com/NVIDIA/aicr/main/install | bash -s --
```

Expand Down
5 changes: 5 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ For engineers integrating AICR into CI/CD pipelines, GitOps workflows, or larger
### Install CLI

```shell
# Homebrew (macOS/Linux)
brew tap NVIDIA/aicr
brew install aicr

# Or use the install script
curl -sfL https://raw.githubusercontent.com/NVIDIA/aicr/main/install | bash -s --
```

Expand Down
6 changes: 5 additions & 1 deletion docs/user/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ This section is for users who:
## Quick Start

```shell
# Install aicr CLI
# Install aicr CLI (Homebrew)
brew tap NVIDIA/aicr
brew install aicr

# Or use the install script
curl -sfL https://raw.githubusercontent.com/NVIDIA/aicr/main/install | bash -s --

# Generate a recipe for your environment
Expand Down
13 changes: 10 additions & 3 deletions docs/user/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ This guide describes how to install the AI Cluster Runtime (AICR) CLI tool (`aic

## Install aicr CLI

### Option 1: Automated Installation (Recommended)
### Option 1: Homebrew (macOS/Linux)

```shell
brew tap NVIDIA/aicr
brew install aicr
```

### Option 2: Automated Installation

Install the latest version using the installation script:

Expand All @@ -38,7 +45,7 @@ This script:

> **Supply Chain Security**: AICR includes SLSA Build Level 3 compliance with signed SBOMs and verifiable attestations. See [SECURITY](../../SECURITY.md#supply-chain-security) for verification instructions.
### Option 2: Manual Installation
### Option 3: Manual Installation

1. **Download the latest release**

Expand All @@ -64,7 +71,7 @@ sudo chmod +x /usr/local/bin/aicr
aicr --version
```

### Option 3: Build from Source
### Option 4: Build from Source

**Requirements:**
- Go 1.26 or higher
Expand Down
5 changes: 5 additions & 0 deletions site/content/docs/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,11 @@ For engineers integrating AICR into CI/CD pipelines, GitOps workflows, or larger
### Install CLI

```shell
# Homebrew (macOS/Linux)
brew tap NVIDIA/aicr
brew install aicr

# Or use the install script
curl -sfL https://raw.githubusercontent.com/NVIDIA/aicr/main/install | bash -s --
```

Expand Down
6 changes: 5 additions & 1 deletion site/content/docs/user/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ This section is for users who:
## Quick Start

```shell
# Install aicr CLI
# Install aicr CLI (Homebrew)
brew tap NVIDIA/aicr
brew install aicr

# Or use the install script
curl -sfL https://raw.githubusercontent.com/NVIDIA/aicr/main/install | bash -s --

# Generate a recipe for your environment
Expand Down
13 changes: 10 additions & 3 deletions site/content/docs/user/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@ This guide describes how to install the AI Cluster Runtime (AICR) CLI tool (`aic

## Install aicr CLI

### Option 1: Automated Installation (Recommended)
### Option 1: Homebrew (macOS/Linux)

```shell
brew tap NVIDIA/aicr
brew install aicr
```

### Option 2: Automated Installation

Install the latest version using the installation script:

Expand All @@ -43,7 +50,7 @@ This script:

> **Supply Chain Security**: AICR includes SLSA Build Level 3 compliance with signed SBOMs and verifiable attestations. See [SECURITY](/docs/project/security/) for verification instructions.
### Option 2: Manual Installation
### Option 3: Manual Installation

1. **Download the latest release**

Expand All @@ -69,7 +76,7 @@ sudo chmod +x /usr/local/bin/aicr
aicr --version
```

### Option 3: Build from Source
### Option 4: Build from Source

**Requirements:**
- Go 1.25 or higher
Expand Down
Loading