Installation
Requirements
Step by Step
-
Run the installation command:
Terminal window go install github.com/mr-smith-org/mr@latest -
Add the Go bin directory to your PATH (if it is not already included):
Add the following line to your shell configuration file (
.bashrc
,.zshrc
, etc.):Terminal window export PATH=$PATH:$(go env GOPATH)/binThen, reload your shell or run:
Terminal window source ~/.bashrcReplace
.bashrc
with your shell configuration file if necessary. -
Verify that $GOPATH is configured correctly:
Run the following command to display the current value of $GOPATH:
Terminal window echo $GOPATHExpected Results:
-
If $GOPATH is configured correctly: The command will return the path to the GOPATH directory, usually something like
/home/user/go
on Linux orC:Users/user/go
on Windows. -
If $GOPATH is empty or incorrect: You will need to configure it by adding the following line to your shell configuration file:
Terminal window export GOPATH=$(go env GOPATH)Then, reload your shell or run:
Terminal window source ~/.bashrcReplace
.bashrc
with your shell configuration file if necessary.
-
-
Verify the installation:
Terminal window mr --helpYou should see the help for the Mr. Smith CLI, confirming that the installation was successful.