Skip to content

latitudesh/cli

Repository files navigation

lsh

lsh is the Latitude.sh command-line interface (CLI) that will help you make it easier to retrieve any data from your team or perform any action you need.

Installation

MacOS / Linux / WSL

Installing the latest version

Homebrew

brew install latitudesh/tools/lsh

Installation Script

curl -fsSL https://cli.latitude.sh/install.sh | sh

Windows is not supported yet

From Github

Visit the releases page and select any version you want to download.

Getting Started

Log in into Latitude.sh. An API Key is required.

lsh login <API_KEY>

The CLI automatically detects when you use sudo and loads your credentials from your user directory.

List your servers

lsh servers list

Commands

The list of the available commands is available here.

Examples

See more examples here.

List a server with a specific hostname:

lsh servers list --hostname <HOSTNAME>

Create a server with Ubuntu 24:

lsh servers create --operating_system ubuntu_24_04_x64_lts --project <PROJECT_ID_OR_SLUG> --site <LOCATION> --hostname <HOSTNAME> --plan <PLAN>

List all GPU plans:

lsh plans list --gpu true

Check plan availability per location (one row per plan × location, with stock_level):

lsh plans stock

Show only locations that currently have stock:

lsh plans stock --in_stock

Filter by region, GPU, or hardware spec and export as CSV:

lsh plans stock --region "United States" --in_stock --format csv > us_plans.csv

Combine filters for scripting with jq (use --format json when piping — the default table requires a TTY):

lsh plans stock --gpu --ram_gte 64 --format json | jq '.[] | {plan: .plan_slug, loc: .location, stock: .stock_level}'

List volumes:

lsh volume list --project <PROJECT_ID>

Mount volume to a server (requires sudo, auto-installs nvme-cli and connects):

# First, login as normal user
lsh login <API_KEY>

# Then mount with sudo (automatically uses your credentials)
sudo lsh volume mount --id vol_abc123

Why sudo is required:

  • Installs nvme-cli package if not present
  • Loads NVMe kernel modules (nvme_tcp)
  • Writes to /etc/nvme/hostnqn
  • Runs privileged nvme connect commands

Important:

  • Login as a normal user (without sudo): lsh login <API_KEY>
  • The CLI automatically finds your credentials when you run commands with sudo
  • Volume mount needs sudo for nvme-cli installation and NVMe operations

Troubleshooting

Uninstalling

If you encounter any problems when installing the CLI with the installation script, you can use the command below to uninstall the CLI.

curl -sSL  https://raw.githubusercontent.com/latitudesh/cli/main/uninstall.sh | bash

Sudo Authentication Issues

If sudo lsh volume mount says "API key not found":

# Make sure you've logged in as your normal user (not with sudo)
lsh login <API_KEY>

# Then try mount again
sudo lsh volume mount --id <VOLUME_ID>

The CLI automatically detects your username via the SUDO_USER environment variable and loads your config.

Docs

For more information, see the documentation.

Provide feedback and contribute

  • Open an issue for questions, feedback, bug reports or feature requests.

  • We welcome pull requests for bug fixes, new features, and improvements to the examples.

About

⚙️ Command-Line Interface for Latitude.sh

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors