Note: Windows support is still rough around the edges. If you encounter issues, please let us know by filing an issue.
Installation
Latest version
Install via PowerShell
Run in PowerShell as administrator:
New-Item -ItemType Directory 'C:\Program Files\Sourcegraph' Invoke-WebRequest https://sourcegraph.com/.api/src-cli/src_windows_amd64.exe -OutFile 'C:\Program Files\Sourcegraph\src.exe' [Environment]::SetEnvironmentVariable('Path', [Environment]::GetEnvironmentVariable('Path', [EnvironmentVariableTarget]::Machine) + ';C:\Program Files\Sourcegraph', [EnvironmentVariableTarget]::Machine) $env:Path += ';C:\Program Files\Sourcegraph'
Install manually
- Download the latest src_windows_amd64.exe
- Place the file under e.g.
C:\Program Files\Sourcegraph\src.exe - Add that directory to your system PATH to access it from any command prompt
Version compatible with your Sourcegraph instance
Install via PowerShell
Run in PowerShell as administrator, but replace sourcegraph.example.com with your Sourcegraph instance URL:
New-Item -ItemType Directory 'C:\Program Files\Sourcegraph' Invoke-WebRequest https://sourcegraph.example.com/.api/src-cli/src_windows_amd64.exe -OutFile 'C:\Program Files\Sourcegraph\src.exe' [Environment]::SetEnvironmentVariable('Path', [Environment]::GetEnvironmentVariable('Path', [EnvironmentVariableTarget]::Machine) + ';C:\Program Files\Sourcegraph', [EnvironmentVariableTarget]::Machine) $env:Path += ';C:\Program Files\Sourcegraph'
Install manually
- Download the latest src_windows_amd64.exe from your Sourcegraph instance at e.g. https://sourcegraph.example.com/.api/src-cli/src_windows_amd64.exe (replace sourcegraph.example.com with your Sourcegraph instance URL)
- Place the file under e.g.
C:\Program Files\Sourcegraph\src.exe - Add that directory to your system PATH to access it from any command prompt