https://github.com/brevdev/brev-cli
Connect your laptop to cloud computers. Follow to stay updated about our product
https://github.com/brevdev/brev-cli
cli cloud-computing devtools golang oss
Last synced: 21 days ago
JSON representation
Connect your laptop to cloud computers. Follow to stay updated about our product
- Host: GitHub
- URL: https://github.com/brevdev/brev-cli
- Owner: brevdev
- License: mit
- Created: 2021-10-14T23:44:58.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-03-07T01:47:24.000Z (3 months ago)
- Last Synced: 2026-03-07T07:37:50.397Z (3 months ago)
- Topics: cli, cloud-computing, devtools, golang, oss
- Language: Go
- Homepage: https://brev.dev
- Size: 38.9 MB
- Stars: 242
- Watchers: 6
- Forks: 25
- Open Issues: 53
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# NVIDIA Brev CLI
[NVIDIA Brev](https://brev.nvidia.com) provides streamlined access to NVIDIA GPU instances on popular cloud platforms, automatic environment setup, and flexible deployment options, enabling developers to start experimenting instantly.
## Install the cli
### MacOS
Assumes [Homebrew](https://brew.sh/) (or Workbrew equivalent) are installed.
```zsh
brew install brevdev/homebrew-brev/brev
```
### Linux
```bash
curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/bin/install-latest.sh | bash
```
Installs to `~/.local/bin`. If it's not on your `PATH`, add this to your shell profile:
```bash
export PATH="$HOME/.local/bin:$PATH"
```
### Windows
**Using Brev With Windows Subsystem for Linux (WSL)**
Brev is supported on windows currently through the Windows Subsystem for Linux (WSL). This guide will walk you through the steps to get Brev up and running on your Windows machine.
**Prerequisites**
- WSL installed and configured
- Virtualization enabled in your BIOS
- Ubuntu >=22.04 installed from the Microsoft Store
Once WSL is set up, install Brev with:
```bash
curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/bin/install-latest.sh | bash
```
Installs to `~/.local/bin`. If it's not on your `PATH`, add this to your shell profile:
```bash
export PATH="$HOME/.local/bin:$PATH"
```
### From conda-forge
To globally install `brev` [from conda-forge](https://github.com/conda-forge/brev-feedstock/) in an isolated environment with [`Pixi`](https://pixi.sh/), run
```
pixi global install brev
```
## Get Started
Log in to your Brev account:
```bash
brev login
```
Create a new GPU instance:
```bash
brev create awesome-gpu-name
```
See the instance:
```bash
brev ls
```
## Docs
https://docs.nvidia.com/brev/latest/
---
## AI Agent Integration
Brev CLI includes a skill for AI coding agents (like [Claude Code](https://claude.com/claude-code)) that enables natural language GPU instance management.
```bash
# Install via CLI
brev agent-skill
# Or via standalone installer
curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/scripts/install-agent-skill.sh | bash
```
Once installed, you can say things like "create an A100 instance for ML training" or "search for GPUs with 40GB VRAM" in your AI coding agent.
## Contributing
We welcome PRs! Checkout [Contributing.md](docs/CONTRIBUTING.md) for more.