新聞中心
這篇文章將為大家詳細(xì)講解有關(guān)如何在linux中使用shell安裝Go語(yǔ)言開(kāi)發(fā)環(huán)境,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
10余年的明山網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開(kāi)發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都全網(wǎng)營(yíng)銷(xiāo)的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整明山建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)從事“明山網(wǎng)站設(shè)計(jì)”,“明山網(wǎng)站推廣”以來(lái),每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
Go語(yǔ)言的安裝步驟
下載安裝包go1.7.linux-amd64.tar.gz
解壓文件到指定目錄: tar -zxf go1.7.linux-amd64.tar.gz
設(shè)置環(huán)境變量:GOROOT
, GOPATH
, PATH
既然我們可以列出這些步驟,那么便可以將整個(gè)過(guò)程自動(dòng)化。
下面是安裝腳本
#!/bin/bash #Upgrade go version to 1.7 #wget https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz go1.7.tar.gz function info() { echo -e "\033[1;34m$1 \033[0m" } function warn() { echo -e "\033[0;33m$1 \033[0m" } function error() { echo -e "\033[0;31m$1 \033[0m" } function usage() { info "Upgrade or install golang..." info "USAGE:" info " ./upgrade.sh tar_file gopath" info " tar_file specify where is the tar file of go binary file" info " gopath specify where is the go workspace, include src, bin, pkg folder" } function createGoPath() { if [ ! -d $1 ]; then mkdir -p $1 fi if [ ! -d "$1/src" ]; then mkdir "$1/src" fi if [ ! -d "$1/bin" ]; then mkdir "$1/bin" fi if [ ! -d "$1/pkg" ]; then mkdir "$1/pkg" fi } if [ -z $1 ]; then usage exit 1 fi file=$1 if [ ! -f $file ]; then error "${file} not exist..." exit 1 fi unzipPath="`pwd`/tmp_unzip_path/" info $unzipPath if [ ! -d $unzipPath ]; then info "not exist" mkdir $unzipPath fi tar -zxf $file -C $unzipPath goroot=$GOROOT if [ ! -n $GOROOT ]; then warn "Use default go root /usr/local/go" goroot="/usr/local/go" fi gopath=$2 info "Create go workspace, include src,bin,pkg folder..." if [ -z $2 ]; then user=`whoami` gopath="/home/$user/workspace/golang" warn "Use $gopath as golang workspace..." if [ ! -d $gopath ]; then mkdir -p $gopath fi fi createGoPath $gopath info "Copy go unzip files to $goroot" sudo cp -r "$unzipPath/go" $goroot rm -rf $unzipPath #etcProfile="/home/user/Desktop/etc" etcProfile="/etc/profile" exportGoroot="export GOROOT=$goroot" if [ ! -z $GOROOT ]; then cat $etcProfile | sed 's/^export.GOROOT.*//' | sudo tee $etcProfile > /dev/null fi echo $exportGoroot | sudo tee -a $etcProfile exportGopath="export GOROOT=$gopath" if [ ! -z $GOPATH ]; then cat $etcProfile | sed 's/^export.GOPATH.*//' | sudo tee $etcProfile > /dev/null fi echo "export GOPATH=$gopath" | sudo tee -a $etcProfile echo 'export PATH=$GOROOT/bin:$GOPATH/bin:$PATH' | sudo tee -a $etcProfile # ## Replace multiple empty lines with one empty line cat $etcProfile -s | sudo tee $etcProfile > /dev/null info "To make configuration take effect, will reboot, pls enter[y/n]" read -p "[y/n]" isReboot if [ $isReboot = "y" ]; then sudo reboot fi
講一講腳本做的事情吧
1、腳本要求輸入編譯好的安裝包,這里本來(lái)是可以做成直接下載的, 但是考慮到大多數(shù)人是無(wú)法連接到golang的官網(wǎng)的,因此放棄了這一步。
2、解壓文件到指定的目錄, 默認(rèn)為/usr/local/go
, 也可以通過(guò)運(yùn)行時(shí)指定
3、在GOPATH下面創(chuàng)建3個(gè)文件夾: src, bin, pkg, GOPATH可以運(yùn)行時(shí)指定,默認(rèn)為/home/{user}/workspace/golang
4、設(shè)置環(huán)境變量: $GOPATH
, $GOROOT
5、重啟服務(wù),使對(duì)/etc/profile
的修改生效
關(guān)于如何在linux中使用shell安裝Go語(yǔ)言開(kāi)發(fā)環(huán)境就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
網(wǎng)站欄目:如何在linux中使用shell安裝Go語(yǔ)言開(kāi)發(fā)環(huán)境
轉(zhuǎn)載來(lái)于:http://www.dlmjj.cn/article/jjcjjp.html