gin使用 swag 提示 : bash: swag: command not found

$ swag init
bash: swag: command not found

1.检查一下gopath目录有没有swag.exe

2.如果是windows电脑,可能不会自动生成。

解决方法:
到swag的目录,例如:github.com\swaggo\[email protected]\cmd\swag*。 在这个目录下执行go install,把swag.exe文件复制到gopath目录下
在这里插入图片描述

Linux和mac直接go get -u github.com/swaggo/swag/cmd/swag都会自动生成swag.exe

你可能感兴趣的:(bug,gin)