Windows users: CC Remote requires WSL (Windows Subsystem for Linux).
Open WSL terminal (not PowerShell/CMD) and run the install script there.
Quick Install (Recommended)
One command to download and install:
curl -sSL https://cc.remotio.me/dist/install.sh | bash
Manual Download
Or download directly with curl:
# Linux x64
curl -sSL https://cc.remotio.me/dist/cc-remote-linux-amd64 -o cc-remote
# Linux ARM64
curl -sSL https://cc.remotio.me/dist/cc-remote-linux-arm64 -o cc-remote
# macOS Intel
curl -sSL https://cc.remotio.me/dist/cc-remote-darwin-amd64 -o cc-remote
# macOS Apple Silicon
curl -sSL https://cc.remotio.me/dist/cc-remote-darwin-arm64 -o cc-remote
# Then make executable and move to PATH
chmod +x cc-remote
sudo mv cc-remote /usr/local/bin/
Connect
1. Get your token
Go to Dashboard and create a machine to get your token.
2. Start the bridge
cc-remote connect YOUR_TOKEN
3. Run in background (optional)
# Using tmux
tmux new -d -s cc-remote 'cc-remote connect YOUR_TOKEN'
# Or using nohup
nohup cc-remote connect YOUR_TOKEN &