Wordle in the terminal. Mac and Linux.
macOS
brew install go && go install github.com/parthUltra/wordle@latest && echo 'export PATH="$PATH:$(go env GOPATH)/bin"' >> ~/.zshrc && source ~/.zshrc && wordle helpLinux (apt)
sudo apt install -y golang-go && go install github.com/parthUltra/wordle@latest && echo 'export PATH="$PATH:$(go env GOPATH)/bin"' >> ~/.bashrc && source ~/.bashrc && wordle help1. Install Go (skip if you already have it)
macOS:
brew install goLinux:
sudo apt install golang-goOther distros / latest Go: https://go.dev/dl/
2. Install wordle
go install github.com/parthUltra/wordle@latest3. Put it on your PATH (once)
macOS (zsh):
echo 'export PATH="$PATH:$(go env GOPATH)/bin"' >> ~/.zshrc && source ~/.zshrcLinux (bash):
echo 'export PATH="$PATH:$(go env GOPATH)/bin"' >> ~/.bashrc && source ~/.bashrcThen type wordle and play.
From a clone instead:
git clone https://github.com/parthUltra/wordle.git
cd wordle
make installIf wordle is not found after make install:
echo 'export PATH="$PATH:$HOME/.local/bin"' >> ~/.zshrc && source ~/.zshrcwordle # menu
wordle daily # today's puzzle
wordle random # practice
wordle stats # streak and guess distribution
wordle helpIf you already finished today's daily, wordle daily opens that board — it does not start a new one.
| key | action |
|---|---|
| letters | type a guess |
| enter | submit |
| backspace | delete |
| tab | hint (first free, extras cost a guess) |
? |
help |
| esc | menu |
Settings (palette, hard mode) live in the in-app menu. Config and stats: ~/Library/Application Support/wordle on macOS, ~/.config/wordle on Linux.
Hard mode is NYT-style: greens stay put, yellows must be reused. Gray letters are still allowed.
go test ./...