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: about 1 month 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 (about 2 months ago)
- Last Synced: 2026-03-07T07:37:50.397Z (about 2 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
### 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
```
### MacOS
Assumes [Homebrew](https://brew.sh/) (or Workbrew equivalent) are installed.
```zsh
brew install brevdev/homebrew-brev/brev && brev login
```
### Linux
```bash
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/bin/install-latest.sh)"
brev login
```
### 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 20.04 installed from the Microsoft Store
Once you have WSL installed and configured, you can install Brev by running the following command in your terminal:
```bash
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/bin/install-latest.sh)"
```
**Next Steps**
Log in to your Brev account:
```bash
brev login
```
## Get Started
https://brev.nvidia.com/
## Docs
https://docs.nvidia.com/brev/latest/
---
https://user-images.githubusercontent.com/14320477/170176621-6b871798-baef-4d42-affe-063a76eca9da.mp4
## 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.