首頁  >  文章  >  後端開發  >  為什麼我的終端無法辨識“go”指令?

為什麼我的終端無法辨識“go”指令?

Susan Sarandon
Susan Sarandon原創
2024-11-03 06:49:30307瀏覽

Why is the 'go' command not recognized in my terminal?

錯誤:'go'指令無法辨識

執行指令「go run main.go」後,您遇到以下錯誤:

go : The term 'go' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

解決方案

要修正此錯誤,您需要將Go 執行檔的路徑新增至系統的環境變數。操作方法如下:

  1. 開啟命令提示字元或終端機視窗。
  2. 執行以下程式碼:
$env:Path = [System.Environment]::GetEnvironmentVariable("Path", "Machine")

這將擷取目前路徑變數.

  1. 將 Go 執行檔的路徑附加到路徑變數。例如,如果Go 安裝在「C:Go」目錄中,請將以下內容新增至您的路徑:
;C:\Go\bin

分號(;) 將新路徑與現有路徑分隔開。

  1. 輸入以下內容儲存變更:
$env:Path = $env:Path + ";C:\Go\bin"

您可能需要將「C:Gobin」替換為 Go 安裝的正確路徑。

  1. 關閉並重新開啟命令提示字元或終端機視窗以使變更生效。

現在,您應該能夠執行「go run main.go」指令而不會遇到錯誤.

以上是為什麼我的終端無法辨識“go”指令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn