中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在linux中使用shell安裝Go語言開發環境

發布時間:2021-03-02 16:52:53 來源:億速云 閱讀:400 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關如何在linux中使用shell安裝Go語言開發環境,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

Go語言的安裝步驟

     下載安裝包go1.7.linux-amd64.tar.gz

     解壓文件到指定目錄: tar -zxf go1.7.linux-amd64.tar.gz

     設置環境變量:GOROOT, GOPATH, PATH

既然我們可以列出這些步驟,那么便可以將整個過程自動化。

下面是安裝腳本

#!/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、腳本要求輸入編譯好的安裝包,這里本來是可以做成直接下載的, 但是考慮到大多數人是無法連接到golang的官網的,因此放棄了這一步。

     2、解壓文件到指定的目錄, 默認為/usr/local/go , 也可以通過運行時指定

     3、在GOPATH下面創建3個文件夾: src, bin, pkg, GOPATH可以運行時指定,默認為/home/{user}/workspace/golang

     4、設置環境變量: $GOPATH, $GOROOT

     5、重啟服務,使對/etc/profile的修改生效

關于如何在linux中使用shell安裝Go語言開發環境就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄂托克前旗| 平山县| 永川市| 聂拉木县| 江达县| 腾冲县| 永济市| 开封市| 古浪县| 黄浦区| 湄潭县| 凤山市| 璧山县| 桑日县| 乌拉特中旗| 大渡口区| 泽普县| 敦煌市| 宿迁市| 嵊泗县| 年辖:市辖区| 山东省| 万年县| 阳原县| 巨鹿县| 金秀| 榆中县| 张家界市| 泰和县| 哈巴河县| 吉首市| 福清市| 华亭县| 蓬莱市| 定西市| 宁安市| 和政县| 赞皇县| 鄄城县| 临汾市| 广德县|