golang開發 二 安裝 Golang

2022-06-25 09:48:12 字數 1399 閱讀 4808

當然了我們的安裝都是在vagrant裡面安裝,vagrant ssh。不用虛擬機器了,本機安裝當然也可以。

go is a tool for managing go source code.

usage:

go command [arguments]

the commands are:

build compile packages and dependencies

如果出現go的usage資訊,那麼說明go已經安裝成功了;如果出現該命令不存在,那麼可以檢查一下自己的path環境變中是否包含了go的安裝目錄。

假定你想要安裝go的目錄為 $go_install_dir,後面替換為相應的目錄路徑。

解壓縮tar.gz包到安裝目錄下:tar zxvf go1.12.5.linux-amd64.tar.gz -c $go_install_dir。

設定path,export path=$path:$go_install_dir/go/bin

然後執行go

go is a tool for managing go source code.

usage:

go command [arguments]

the commands are:

build compile packages and dependencies

驗證是否安裝成功

在執行中輸入 cmd 開啟命令列工具,在提示符下輸入 go,檢查是否能看到 usage 資訊。輸入 cd %goroot%,看是否能進入 go 安裝目錄。若都成功,說明安裝成功。

不能的話請檢查上述環境變數 path 和 goroot 的值。若不存在請解除安裝後重新安裝,存在請重啟計算機後重試以上步驟。

cd go/src

./all.bash

執行all.bash後出現"all tests passed"字樣時才算安裝成功。

上面是unix風格的命令,windows下的安裝方式類似,只不過是執行all.bat,呼叫的編譯器是mingw的gcc。

如果是window系統,就需要設定環境變數,在path裡面增加相應的go所在的目錄,設定gopath變數。

編輯~/.zshrc

//golang專案目錄

export gopath=/data/www/go

//建立go需要的三個目錄

mkdir /data/www/go/

//golang編譯結果生成的可執行檔案

export path=$path:/usr/local/go/bin:$gopath/bin

source ~/.zshrc

golang開發 二 安裝 Golang

當然了我們的安裝都是在vagrant裡面安裝,vagrant ssh。不用虛擬機器了,本機安裝當然也可以。go is a tool for managing go source code.usage go command arguments the commands are build compil...

golang 安裝 搭建開發環境

go官 方映象站 推薦 根據 己的作業系統,行選擇安裝。我的電腦是mac,安裝的是 1.6 版本,安裝比較簡單,直接雙擊安裝包便自動安裝。mac 配置go 環境過程 export goroot usr local go export gopath home go export gobin goroo...

怎樣安裝golang開發環境

go語言支援多平台的作業系統 國內位址為 以下是使用二進位制安裝檔案的安裝方式 解壓安裝包 tar zxvf go1.16.5.linux arm64.tar.gz 將安裝包移到系統目錄 sudo mv go usr local 設定環境變數,使用sudo vim etc profile開啟系統pr...