Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #2349

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,29 @@ K9s is available on Linux, macOS and Windows platforms.
## Building From Source

K9s is currently using go v1.14 or above. In order to build K9s from source you must:
installing go language


```bash
wget https://golang.org/dl/goX.Y.Z.linux-amd64.tar.gz

sudo tar -xvf go1.21.0.linux-amd64.tar.gz -C /usr/local
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might as well continue with the X.Y.Z theme...

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yah I agree with you and I removed it


```
Update your environment variables
```bash
export GOROOT=/usr/local/go
rezabojnordi marked this conversation as resolved.
Show resolved Hide resolved
export GOPATH=$HOME/go
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH

source ~/.bashrc
or
source ~/.zshrc
```
checking the version
```
go version
```

1. Clone the repo
2. Build and run the executable
Expand Down