install go and kind in Ubuntu 18.04

Chao已被使用 · · 479 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

First install go:

go to your home directory and get the golang tarball using curl

cd ~

change "go1.15.2" to whatever version you want

curl -O https://dl.google.com/go/go1.15.2.linux-amd64.tar.gz

extract the download using tar

tar xvf go1.15.2.linux-amd64.tar.gz

move the go install to /usr/local

sudo chown -R root:root ./go
sudo mv go /usr/local

set up your go paths

sudo nano ~/.profile

add these at the end of the file
change "$HOME/go" to wherever you will be doing your projects

export GOPATH=$HOME/go
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

save the file and exit

apply the changes to your terminal

source ~/.profile

you're good to Go :)

Second install kind

If you have go ([1.11+]) and docker installed

GO111MODULE="on" go get sigs.k8s.io/kind@v0.9.0

set path environments

sudo mv ./kind /usr/local/bin/kind

reference: https://github.com/kubernetes-sigs/kind/issues/1553


有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:Chao已被使用

查看原文:install go and kind in Ubuntu 18.04

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

479 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传