### Show Speedscale Installer Help Source: https://context7.com/speedscale/speedscale-cli/llms.txt Displays the usage information for the Speedscale installer script itself, including options for installation and uninstallation. ```bash bash install -h ``` -------------------------------- ### Install Speedscale CLI Source: https://context7.com/speedscale/speedscale-cli/llms.txt Installs the latest Speedscale CLI binary. It can be run directly or piped from a remote source. The script attempts to auto-detect the shell and prompts to update the rc file for PATH configuration. ```bash bash install ``` ```bash curl -sL https://raw.githubusercontent.com/speedscale/speedscale-cli/main/install | bash ``` -------------------------------- ### Manual PATH Configuration for Speedscale CLI Source: https://context7.com/speedscale/speedscale-cli/llms.txt Manually adds the Speedscale CLI binary to your system's PATH by exporting SPEEDSCALE_HOME and updating the PATH variable in your shell's rc file. Remember to reload your shell configuration after making changes. ```bash # Add to ~/.bashrc, ~/.zshrc, or equivalent export SPEEDSCALE_HOME="$HOME/.speedscale" export PATH=$SPEEDSCALE_HOME:$PATH # Reload your shell configuration source ~/.bashrc # or source ~/.zshrc # Verify the installation speedscale --help ``` -------------------------------- ### Uninstall Speedscale CLI Source: https://context7.com/speedscale/speedscale-cli/llms.txt Uninstalls the Speedscale CLI by removing the entire $HOME/.speedscale/ directory. The script prompts for confirmation before proceeding. ```bash bash install -u ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.