GOLANG
Go is a programming language created at Google in 2009. In this post, We will learn how to install Go on Linux.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Go is a programming language created at Google in 2009. In this post, We will learn how to install Go on Linux.
Step 1
Extract it into /usr/local folder
sudo tar -C /usr/local -xzf go1.10.1.linux-amd64.tar.gz
Step 3
Add /usr/local/go/bin to the PATH environment variable.
or You can also install Go using terminalexport PATH=$PATH:/usr/local/go/bin
sudo apt install golang-go
Comments
Post a Comment