Install Copilot
You can install AWS Copilot through Homebrew or by downloading the binaries directly.
Homebrew 🍻
brew install aws/tap/copilot-cli
Manually
Copy and paste the command into your terminal.
Command to install |
---|
curl -Lo copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-darwin && chmod +x copilot && sudo mv copilot /usr/local/bin/copilot && copilot --help |
Command to install |
---|
curl -Lo copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-linux && chmod +x copilot && sudo mv copilot /usr/local/bin/copilot && copilot --help |
Command to install |
---|
curl -Lo copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-linux-arm64 && chmod +x copilot && sudo mv copilot /usr/local/bin/copilot && copilot --help |
Command to install |
---|
Invoke-WebRequest -OutFile 'C:\Program Files\copilot.exe' https://github.com/aws/copilot-cli/releases/latest/download/copilot-windows.exe |
Tip
Please use the Windows Terminal to have the best user experience. If you encounter permissions issues, ensure that you are running your terminal as an administrator.
Info
To download a specific version, replace "latest" with the specific version. For example, to download v0.6.0 on macOS, type:
curl -Lo copilot https://github.com/aws/copilot-cli/releases/download/v0.6.0/copilot-darwin && chmod +x copilot && sudo mv copilot /usr/local/bin/copilot && copilot --help