[Vuejs]-Go get wails is not installing properly

2👍

Make sure your shell file has:

export GO111MODULE=on
export PATH=$PATH:~/go/bin

-1👍

go get github.com/wailsapp/wails/cmd/wails was indeed broken by a change in Masterminds/semver, however the official way to install Wails is to ensure you have GO111MODULE=on before installing. This generally will safeguard you from this issue.

Leave a comment