Sunday, 22 November 2015

Install GO language on Ubuntu (64 bit)

Go is a general-purpose language designed with systems programming in mind.It was initially developed at Google in year 2007 by Robert Griesemer, Rob Pike, and Ken Thompson. It is strongly and statically typed, provides inbuilt support for garbage collection and supports concurrent programming. Programs are constructed using packages, for efficient management of dependencies. Go programming implementations use a traditional compile and link model to generate executable binaries.

The Go programming language was announced in November 2009 and is used in some of the Google's production systems



Installation

sudo apt-get install python-software-properties
 
sudo add-apt-repository ppa:duh/golang 
 
sudo apt-get update
 
sudo apt-get install golang 


To confirm:
 
go version

O/P

go version go1.2.1 linux/amd64

Type go in terminal output will look like this 
 



No comments:

Post a Comment