mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 15:31:05 +08:00
### What problem does this PR solve? rename ragflow cli binary ### Type of change - [x] Refactoring Signed-off-by: Jin Hai <haijin.chn@gmail.com>
2.3 KiB
2.3 KiB
RAGFlow CLI Installation Scripts
RAGFlow publishes static Go CLI binaries as GitHub Release assets for:
- Linux:
amd64,arm64 - macOS:
amd64,arm64 - Windows:
amd64,arm64
The release workflow builds the binaries with CGO_ENABLED=0, uploads SHA256SUMS, and uploads install.sh and install.ps1.
Linux And macOS
Use the hosted script:
curl -sSfL https://your-domain/install.sh | sh
Install a specific version:
curl -sSfL https://your-domain/install.sh | VERSION=v1.0.0 sh
Install to a user-writable directory:
curl -sSfL https://your-domain/install.sh | INSTALL_DIR="$HOME/.local/bin" sh
The Unix installer:
- detects
linuxordarwin - detects
amd64orarm64 - downloads
ragflow-cli-{VERSION}-{OS}-{ARCH} - verifies the file with the release
SHA256SUMS - installs to
/usr/local/binby default
Windows PowerShell
Use the hosted script:
iwr https://your-domain/install.ps1 -OutFile install.ps1
powershell -ExecutionPolicy Bypass -File .\install.ps1
Install a specific version:
.\install.ps1 -Version "v1.0.0"
Install to a custom directory:
.\install.ps1 -InstallDir "$env:USERPROFILE\bin"
The Windows installer:
- detects
windows/amd64orwindows/arm64 - downloads
ragflow-cli-{VERSION}-windows-{ARCH}.exe - verifies the file with the release
SHA256SUMS - installs to
$env:LOCALAPPDATA\Programs\RAGFlowby default - adds the install directory to the user
PATH
Release Asset Names
The install scripts expect these names:
ragflow-cli-v1.0.0-linux-amd64
ragflow-cli-v1.0.0-linux-arm64
ragflow-cli-v1.0.0-darwin-amd64
ragflow-cli-v1.0.0-darwin-arm64
ragflow-cli-v1.0.0-windows-amd64.exe
ragflow-cli-v1.0.0-windows-arm64.exe
SHA256SUMS
install.sh
install.ps1
Hosting Options
Use a static domain for the public one-line command:
https://your-domain/install.sh
https://your-domain/install.ps1
The same scripts can also be used directly from a GitHub Release asset, for example:
https://github.com/infiniflow/ragflow/releases/download/v1.0.0/install.sh
https://github.com/infiniflow/ragflow/releases/download/v1.0.0/install.ps1
By default, both scripts install the latest stable GitHub Release. Set VERSION on Unix or -Version on Windows to pin a specific release.