goplantuml
goplantuml copied to clipboard
zsh: command not found: goplantuml
even though I am installing the required dependencies I am getting this error
zsh: command not found: goplantuml
I've run these commands to install goplantuml
❯ go get github.com/jfeliu007/goplantuml/parser
❯ go install github.com/jfeliu007/goplantuml/cmd/goplantuml@latest
and then, tried running this command goplantuml temp.go
and got the error
Try instead running ~/home/<your_user>/go/bin/goplantuml temp.go
Is this resolved?
Solution for Macbook:
export PATH=$PATH:$(go env GOPATH)/bin
echo 'export PATH=$PATH:$(go env GOPATH)/bin' >> ~/.zshrc
source ~/.zshrc
@jfeliu007 Would adding it to a help session in the Readme would be great?