我正在通过这个视频教程学习 Go lang https://youtu.be/LOn1GUsjOF4?t=163 。我的环境:Windows 11 x64,Visual Studio Code 1.75.1(最新),Go v1.20.1(最新)。
PS D:\temp2023_02_24\newfeeder> go mod init newsfeeder
go: creating new go.mod: module newsfeeder
go: to add module requirements and sums:
go mod tidy
PS D:\temp2023_02_24\newfeeder> go run .\main.go
hi
PS D:\temp2023_02_24\newfeeder> go run .\main.go
hi
PS D:\temp2023_02_24\newfeeder> go run .\main.go
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.
At line:1 char:1
+ make dev
+ ~~~~
+ CategoryInfo : ObjectNotFound: (make:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
PS D:\temp2023_02_24\newfeeder>
如何解决?