This guide covers installation on Windows using Git Bash.
- Windows 10/11 (64-bit)
- Git for Windows (includes Git Bash) — Download
- Internet connection (for downloading tools and dependencies)
Open Git Bash and run:
curl -fsSL https://raw.githubusercontent.com/etalab-ia/ragtime/main/install.sh | bashThis installs uv, just, and the ragtime CLI as a global tool.
Then restart Git Bash (or run the source command shown by the installer) so the new tools are available on your PATH.
ragtime setup mon-projet
cd mon-projet && just runMake sure you are using Git Bash, not Command Prompt or PowerShell. Git Bash includes curl by default.
Restart Git Bash so the updated PATH takes effect, then verify:
ragtime --versionIf still not found, add ~/.local/bin to your PATH manually:
export PATH="$HOME/.local/bin:$PATH"Add this line to ~/.bashrc to make it permanent.
Ensure Git for Windows is installed and available:
git --versionIf not found, download and install from git-scm.com.
Set proxy environment variables before running the installer:
export HTTP_PROXY=http://proxy.company.com:8080
export HTTPS_PROXY=http://proxy.company.com:8080
curl -fsSL https://raw.githubusercontent.com/etalab-ia/ragtime/main/install.sh | bashFor more details, see Proxy Setup Guide.
- Read the main README: ../../README.md
- Explore available tasks:
cd mon-projet && just
Still stuck? Open an issue: https://github.com/etalab-ia/ragtime/issues