tcardgen
tcardgen copied to clipboard
How to use on macOS?
I have installed go using brew install go
and then ran go install github.com/Ladicle/tcardgen@latest
. But that does not seem to make tcardgen
work. I get:
> tcardgen
zsh: command not found: tcardgen
The version of go:
> go version
go version go1.19.2 darwin/amd64
What should I do to get this working on macOS?
@wimdeblauwe
If the path to the installation location is not followed, the following command may solve the problem.
export PATH="$(go env GOPATH)/bin:$PATH"