2

I am new to grpcui. I've been trying to follow the installation. I did

go get github.com/fullstorydev/grpcui/...
go install github.com/fullstorydev/grpcui/cmd/grpcui

I also added grpcui path to my $PATH. Even tried to pull down the repo and make install. But I keep getting grpcui: command not found. Anyone could help ?

Serena Xu
  • 179
  • 2
  • 8

2 Answers2

2

After installation, your grpcui should be in /home/user/go/bin. If so, try and add that folder to your $PATH, as I did (and it worked).

Adam
  • 58
  • 7
0

To further Adam's answer, a critical step in updating the PATH is restarting the terminal.

On OSX this needs to be done via exec bash -l. Simply exiting and opening the terminal does not work.