← Back to Getting Started
Install on Windows
Get codrsync running on Windows
Option A: WSL (Recommended)
Windows Subsystem for Linux gives you a full Linux environment. This is the best experience for codrsync.
1Open PowerShell as Administrator
Right-click the Start button > Terminal (Admin) or search "PowerShell" and run as admin.
2Install WSL
$ wsl --install3Restart your computer
After restart, Ubuntu will finish setup. Create a username and password when prompted.
4Install codrsync in WSL
Open Ubuntu from the Start menu and run:
$ curl -fsSL https://codrsync.dev/install.sh | bashOption B: PowerShell (Native)
If you prefer not to use WSL, you can install via pip or npm on Windows directly.
Using pip (requires Python):
Install Python first if needed:
$ winget install Python.Python.3.12$ pip install codrsyncUsing npm (requires Node.js):
$ npm install -g codrsyncVerify installation
$ codrsync --version