Installing Google's Go Language on Ubuntu
GO languagepromoted by google is a new system programming language said to be expressive,concurrent, garbage-collected. The language is still very young and there is no ready madepackage available for ubuntu. You can install it and try out the features from the version controlrepository of go .Let us see how you can do this. I did it on ubuntu 9.04.
1) Install Pre-requisites on ubuntu.
You need gcc and some supporting software like bison to compile go. Install the following.
$ sudo apt-get install bison gcc libc6-dev ed.
The go repository uses mercurial version controls system .Install mercurial with the following command.
$ apt-get install mercurial
2 Set up the environment variables.
I am assuming that you are planning to install go under a foldernamed go in your home directory.In my case it is /home/fermi/goCreate it with
$mkdir go
Now create another direcory inside go .
$ mkdir go/bin
The above directory will contain your go compiler.Next, you have to set u several variables.
Leave a Comment