首頁  >  文章  >  後端開發  >  為什麼當我執行'go run main.go”時無法識別'go”命令?

為什麼當我執行'go run main.go”時無法識別'go”命令?

Linda Hamilton
Linda Hamilton原創
2024-11-03 12:42:30902瀏覽

Why is the `go` command not recognized when I run `go run main.go`?

執行'go run main.go' 時發生錯誤:「無法辨識術語'go'」

執行指令go 時執行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")

這會修改系統的路徑變數以包含「go」命令的適當路徑。執行此命令後,使用者可以執行“go run main.go”而不會遇到錯誤。

以上是為什麼當我執行'go run main.go”時無法識別'go”命令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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