go 언어는 학습 환경이 잘 되어 있습니다.


http://go-tour-kr.appspot.com/#1


위 사이트는 go 언어를 쉽게 학습 할 수 있도 단계별로 구성 되어 있습니다.


처음 해보는 사람들도 쉽게 예제코드를 수정해 가며 직접 동작 시켜 볼 수 있도록 되어 있더군요.


하지만 역시 go 컴파일러를 설치 해서 브라우저가 아닌 pc 에서 해보는 것도 좋겠지요..


go 컴파일러를 설치 해 보겠습니다.


Install package golang

The golang Debian package may have already made its way into your Ubuntu distribution. Try this:

   sudo apt-get install golang

If that didn't work

If you have an arm, i386, or amd64, with the Ubuntu Lucid, Maverick, Natty, Oneiric, or Precise release, you can easily install Go 1 right now as a package by running:

   sudo add-apt-repository ppa:gophers/go
   sudo apt
-get update
   sudo apt
-get install golang-stable

(If you don't have add-apt-repository, run "sudo apt-get install python-software-properties".)

The golang-stable package includes everything necessary for developing with Go. There are also golang-tip and golang-weeklypackages in the same repository, and these are up-to-date, except golang-weekly isn't really interesting at the moment since golang-stable is more recent.


그래서 설치 해 봤습니다.

r2adve]# add-apt-repository ppa:gophers/go

r2adve]# apt-get update

r2adve]# apt-get install golang


위와 같이 실행 해서 설치를 했습니다.


정상적으로 설치가 됐는지 확인 하는 방법은 간단히 버전정보를 보는 것 이겠지요.


root@r2adve:sst]# go version
go version go1.2.1 linux/amd64
root@r2adve:sst]# 

잘 설치가 된듯 합니다.