錯誤:'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 執行檔的路徑新增至系統的環境變數。操作方法如下:
$env:Path = [System.Environment]::GetEnvironmentVariable("Path", "Machine")
這將擷取目前路徑變數.
;C:\Go\bin
分號(;) 將新路徑與現有路徑分隔開。
$env:Path = $env:Path + ";C:\Go\bin"
您可能需要將「C:Gobin」替換為 Go 安裝的正確路徑。
現在,您應該能夠執行「go run main.go」指令而不會遇到錯誤.
以上是為什麼我的終端無法辨識'go”指令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!