Skip to main content

Client Setup

We provide a client library to programmatically interact with NVIDIA CCluster either through command line or using Python SDK.

Use the following command to install centml client.

pip install centml

Run the following command to log in using your NVIDIA CCluster client credentials.

centml login

The first time, you'll be prompted to log in to your CCluster account through a browser. Once logged in, you are all set to use the client. You can use the centml CLI command to list your deployments.

centml cluster ls

# Alternatively, as a shorthand
ccluster ls

Checkout other supported commands,

ccluster --help
Usage: ccluster [OPTIONS] COMMAND [ARGS]...

NVIDIA CCluster CLI tool

Options:
--help Show this message and exit.

Commands:
delete Delete a deployment
get Get deployment details
ls List all deployments
pause Pause a deployment
resume Resume a deployment

To logout, use the following command.

centml logout

What's next