php小編蘋果在使用Go語言開發過程中,有時會遇到一個錯誤提示:「GO111MODULE」未被辨識為內部或外部指令。這個錯誤通常發生在使用go mod指令時,會讓人感到困惑。那麼,為什麼會出現這個錯誤呢?該如何解決呢?在本文中,我們將詳細解析這個問題,並提供解決方案,幫助開發者順利進行Go語言開發。
我已經在 windows 機器上複製了 go repo,並且正在嘗試建構它(make 已安裝,v4.3):
make tempo
它給了我錯誤:
FIND: Parameter format not correct FIND: Parameter format not correct File not found - "*.yaml" no Go files in ....\tempo process_begin: CreateProcess(NULL, uname -s, ...) failed. Makefile:51: pipe: Bad file descriptor '.' is not recognized as an internal or external command, operable program or batch file. GO111MODULE=on CGO_ENABLED=0 go build -mod vendor -ldflags "-X main.Branch=fix2308 -X main.Revision=e92189167 -X main.Version=" -o ./bin/windows/tempo-amd64 ./cmd/tempo 'GO111MODULE' is not recognized as an internal or external command, operable program or batch file. make: *** [Makefile:63: tempo] Error 1
我已將環境變數 go111module 設定為開啟。
我應該如何解釋此訊息?
windows 不支援設定環境變數並執行 go111module=on cgo_enabled=0 go build
等指令的方式。解決方法是在「git for windows」提供的「git bash」中執行 make tempo
。我剛剛進行了測試,效果很好:
zeke@my-PC MINGW64 /d/src/temp/tempo (main) $ make tempo GO111MODULE=on CGO_ENABLED=0 go build -mod vendor -ldflags "-X main.Branch=main -X main.Revision=e92189167 -X main.Version=main-e921891" -o ./bin/windows/tempo-amd64 ./cmd/tempo
注意:輸出檔 ./bin/windows/tempo-amd64
沒有副檔名 .exe
。請記住重命名此文件以添加擴展名。
以上是'GO111MODULE”未被識別為內部或外部命令的詳細內容。更多資訊請關注PHP中文網其他相關文章!