首頁  >  文章  >  後端開發  >  為什麼我無法運行“go run main.go”?

為什麼我無法運行“go run main.go”?

Barbara Streisand
Barbara Streisand原創
2024-11-02 22:02:02364瀏覽

Why Can't I Run

Windows 中「go: The term 'go' is not recognize」錯誤的疑難排解

當嘗試執行「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")

此指令會擷取「Path」環境變數的目前值。接下來,將 Go 安裝目錄的路徑附加到該值。例如,如果Go 安裝在「C:Go」中,請使用以下命令:

$env:Path += ";C:\Go\bin"

最後,透過執行儲存變更:

[System.Environment]::SetEnvironmentVariable("Path", $env:Path, "Machine")

完成這些步驟後,重新啟動終端並嘗試再次執行“go run main.go”。該錯誤應該已解決。

以上是為什麼我無法運行“go run main.go”?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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