当我通过终端运行cat .bash_profile
命令时,会显示以下消息:
导出GOPATH = c:/ Users / Petey / Documents / go
我cd
进入上面,创建main.go
并尝试使用go run main.go
执行,但我收到此错误。我做错了什么?
go:GOPATH条目是相对的;必须是绝对的道路:" c"。
答案 0 :(得分:0)
你应该引用这样的路径: export GOPATH =“C:/ Users / Petey / Documents / go”
由于它是Windows bash,您还可以尝试: export GOPATH =“/ mnt / c / Users / Petey / Documents / go”