Get Started

gpud-demo.gif)

Installation

To install from the official release on Linux and amd64 (x86_64) machine:

curl -fsSL https://pkg.gpud.dev/install.sh | sh

Note that the install script doesn't support other architectures (arm64) and OSes (macos), yet.

Run GPUd with Lepton Platform

Sign up at Lepton AI and get the workspace token from the "Settings" and "Tokens" page:

gpud-lepton.ai-machines-settings

Copy the token in the format of workspace:token and pass it to the gpud up --token flag:

  sudo gpud up --token <LEPTON_AI_WORKSPACE:TOKEM>

You can go to the dashboard to check the self-managed machine status.

Run GPUd standalone

For linux, run the following command to start the service:

  sudo gpud up

You can also start with the standalone mode and later switch to the managed option:

# when the token is ready, run the following command
  sudo gpud login --token <LEPTON_AI_WORKSPACE:TOKEM>

To access the local web UI, open https://localhost:15132 in your browser.

If your system doesn't have systemd

To run on Mac (without systemd):

  gpud run

Or

  nohup sudo /usr/sbin/gpud run &>> <your log file path> &

Stop and uninstall

  sudo gpud down
  sudo rm /usr/sbin/gpud
  sudo rm /etc/systemd/system/gpud.service