Installation guide¶
Download the latest release for your operating system from the |org| DDS CLI releases page.
Operating system |
File to download |
|---|---|
macOS (Apple Silicon) |
|
macOS (Intel) |
|
Linux (Ubuntu latest) |
|
Linux (Ubuntu 24.04) |
|
Linux (Ubuntu 22.04) |
|
Windows |
|
macOS / Linux¶
Download the binary for your OS from the releases page.
Open a terminal in the folder where you downloaded the file and make it executable:
chmod +x dds_cli_*
Move it to a directory on your PATH so you can run it from anywhere:
mv dds_cli_* /usr/local/bin/dds
Verify the installation:
dds --version
macOS users
On macOS, the first time you run the binary your system may block it because it is not from the App Store. To allow it, go to System Settings → Privacy & Security and click Open Anyway, or run:
xattr -d com.apple.quarantine /usr/local/bin/dds
Windows¶
Download
dds_cli_win_x86_64.exefrom the releases page.Rename it to
dds.exeand place it in a folder that is on your PATH (for exampleC:\Users\<you>\bin).Open PowerShell or Command Prompt and verify:
dds --version
Basic usage¶
Log in to the Epigenica Data Delivery System:
dds auth login
List your projects:
dds ls
Download all data from a project:
dds data get -p <project-id> -a --verify-checksum
For a full list of commands and options, run dds --help or dds <command> --help.