A simple command line app written in go, that shows you the current weather. The app uses the data from wttr.in and is just a simple app for me to learn go.
You can install gowttr in two ways: using an install script or building it manually.
Run this to download the latest release and install it:
curl -sL https://gowttr.j4n.net/install | bash
This will:
- Download the latest compiled binary from GitHub releases
- Make it executable
- Move it to /usr/local/bin/ so you can run gowttr from anywhere
After installation, you can check if it works by running:
gowttr -h
If you prefer to build gowttr yourself, follow these steps:
sudo apt install golang # Debian/Ubuntu
brew install go # macOS
git clone https://github.com/KartoffelChipss/gowttr.git
cd gowttr
go build -o gowttr .
chmod +x gowttr
sudo mv gowttr /usr/local/bin/
gowttr --help