How to install go language under centos7 and centos8
In this article, the editor introduces in detail "how to install go language under centos7 and centos8". The content is detailed, the steps are clear, and the details are handled properly. I hope this article "how to install go language under centos7 and centos8" can help you solve your doubts.
Choose linux
Upgrade centos7 first.
Yum update-yyum install wget-ywget https://dl.google.com/go/go1.14.2.linux-amd64.tar.gztar zxvf go1.14.2.linux-amd64.tar.gzmv go / usr/local/go
Create a working directory
Mkdir-p / root/work
Add environment variabl
Echo 'export PATH=$PATH:/usr/local/go/bin' > > / etc/profileecho' export GOPATH=/root/work' > > / etc/profilemv / usr/bin/go / usr/bin/gooldln-s / usr/local/go/bin/go / usr/bin/go
Then source makes it effective:
Source / etc/profile
Then check the version:
Go version read this, this article "how to install go language under centos7 and centos8" has been introduced. If you want to master the knowledge of this article, you still need to practice and use it. If you want to know more about related articles, welcome to follow the industry information channel.