系统是 windows 10
任意目录输入:go version
显示
![image.png](https://static.studygolang.com/181203/1bd5bc1de438c61897044fc75686a5eb.png)
任意目录输入 go env
显示
![image.png](https://static.studygolang.com/181203/e5adcb370d9e2944274b7f521610f83f.png)
编写代码 test.go
![image.png](https://static.studygolang.com/181203/dcda8fb7d00ba5c4aa7e3047bc35eae0.png)
然后切换到文件所在目录 输入指令 go run test.go
显示
![image.png](https://static.studygolang.com/181203/7329fcf12557f11e5434a2b1eacec873.png)
有大神遇到过吗? 记得初次装go 配置好之后 运行成功
第二天就成了上述情况 卸载重装也无济于事
更多评论
**要在GOPATH环境所在的目录下运行才行啊。应该:C:\Users\asus\go... > go run test.go** ** 而你:C:\Users\asus\Desktop > go run test.go**
**也就是说,你的go文件要建在这个C:\Users\asus\go目录下面。比如:C:\Users\asus\go\gocode\test.go 。那么你得这样:C:\Users\asus\go\gocode > go run test.go**
#1