Skip to main content

Installing Timecraft

Supported Systems

Timecraft runs on macOS and Linux.

Installing Go

Timecraft requires Go.

macOS users using homebrew can install Go using:

brew install go

Ubuntu users can install Go with:

sudo apt install golang

For other Linux systems, please see the Go Releases page for installation instructions.

Installing Timecraft

To install Timecraft, run:

go install github.com/stealthrocket/timecraft@latest

Timecraft should now be available. To check that installation was successful, run:

timecraft help

Installation Issues

Cannot find timecraft command

If the timecraft command cannot be found, make sure $GOPATH/bin is in your search path:

export PATH="$GOPATH/bin:$PATH"

If $GOPATH has not been set, try:

go env | grep GOPATH