# Install directly from source using Gogo install github.com/sdelrio/fg-char-extract@latest# Verify installation by running without arguments (uses db.xml in current dir)fg-char-extract
Download the Windows executable from GitHub Releases:
# Using PowerShellInvoke-WebRequest -Uri "https://github.com/sdelrio/fg-char-extract/releases/latest/download/fg-char-extract-windows-amd64.exe" -OutFile "fg-char-extract.exe"
2
Add to PATH (Optional)
Move the executable to a directory in your PATH, such as C:\Program Files\FGCharExtract\, and add that directory to your system PATH.Or simply run it from the download directory.
3
Verify Installation
Run the tool to verify it’s working:
.\fg-char-extract.exe
You should see an error about missing db.xml if run in an empty directory, which confirms the tool is working.
git clone https://github.com/sdelrio/fg-char-extract.gitcd fg-char-extract# Build for current platformtask build# Or build for all platforms (macOS x86_64, macOS arm64, Windows x86_64)task build-all
If you’re contributing to the project or want a reproducible development environment:
# Install Devboxcurl -fsSL https://get.jetpack.io/devbox/install.sh | bash# Clone and enter the environmentgit clone https://github.com/sdelrio/fg-char-extract.gitcd fg-char-extractdevbox shell# Build using Tasktask build
Devbox ensures you have the exact Go version (1.25.7) and environment variables configured correctly.