Skip to main content
View and manage your TensorPool account with the tp me command and its subcommands.

tp me

View your account information and usage.
tp me
This command displays:
  • Account details
  • Current usage statistics
  • Billing information
  • Organization membership (if applicable)

tp me sshkey

Manage the SSH keys associated with your account. Keys saved here are automatically available when creating clusters, so you don’t need to pass -i each time.

tp me sshkey add

Add an SSH public key to your account.
tp me sshkey add <key_path> [--name NAME]
ArgumentDescription
key_pathPath to your SSH public key file
--name NAMEOptional name for the key (to help you identify it later)

Examples

Add a key:
tp me sshkey add ~/.ssh/id_ed25519.pub
Add a key with a name:
tp me sshkey add ~/.ssh/id_ed25519.pub --name "work laptop"

tp me sshkey list

List the SSH keys on your account. Alias: tp me sshkey ls.
tp me sshkey list [--org]
OptionDescription
--org, --organizationList all SSH keys in your organization

Examples

List your keys:
tp me sshkey list
List all keys in your organization:
tp me sshkey ls --org

tp me sshkey remove

Remove an SSH key from your account. Alias: tp me sshkey rm.
tp me sshkey remove <key_id>
ArgumentDescription
key_idThe ID of the SSH key to remove (find this with tp me sshkey list)

Example

tp me sshkey remove k-abc123

tp me preferences

View your account preferences.
tp me preferences

Next Steps