Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions runpodctl/overview.mdx

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(Line 44)

PR #303 added SHA-256 checksum verification to install.sh before extraction; its calculate_sha256 helper uses sha256sum or shasum and fails closed with "No SHA-256 checksum tool found" when neither is present, and the new header requirement notes sha256sum on Linux or shasum on macOS. This note documents that new prerequisite.

Source: runpod/runpodctl#303

Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ bash <(curl -sL cli.runpod.io)

The script installs the latest version to `/usr/local/bin` when run as root, or to `~/.local/bin` for non-root users. If you don't have root access, the script displays instructions for adding `runpodctl` to your PATH.

<Note>
The install script verifies the downloaded release against its SHA-256 checksum before installing, so it needs a checksum tool to be present: `sha256sum` on Linux or `shasum` on macOS. These are preinstalled in most environments, but on minimal images without one the install aborts.
</Note>

</Tab>

<Tab title="macOS">
Expand Down
Loading