Other articles


  1. install golang to ubuntu

    在ubuntu上搭建go环境

    搜了一下,发现有一个比较全面的教程

    当然还有官方的教程

    还是比较喜欢使用apt-get的方式来安装(当然我也是编译了好几次没有成功,T_T)

    sudo apt-get install golang

    然后添加一下环境,sudo vim /etc/profile

    export GOROOT=~/go
    export GOARCH=386
    export GOOS=linux
    export GOBIN=$GOROOT/bin/
    export GOTOOLS=$GOROOT/pkg/tool/
    export PATH=$PATH:$GOBIN:$GOTOOLS
    

    刷新一下

    source /etc/profile
    

    写个Helloword来试试

    package main ...
    read more

    There are comments.

blogroll

social