← Back to install methods
Install with curl
The fastest way to install codrsync
Install command
$ curl -fsSL https://codrsync.dev/install.sh | bashWhat it does
- 1Downloads the install script from codrsync.dev
- 2Detects your operating system and architecture
- 3Installs Python via uv if not already present
- 4Installs codrsync via pipx in an isolated environment
- 5Adds codrsync to your PATH automatically
Prerequisites
No prerequisites needed on macOS
Verify installation
$ codrsync --versionYou should see the version number if the installation was successful.
Troubleshooting
Problem: Permission denied
Solution: Run with: curl -fsSL https://codrsync.dev/install.sh | sudo bash
Problem: curl: command not found
Solution: Install curl: sudo apt install curl (Ubuntu) or sudo dnf install curl (Fedora)
Problem: Script exits silently
Solution: Run with bash -x to debug: curl -fsSL https://codrsync.dev/install.sh | bash -x