You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After run sudo ./launchServer.sh the log of the server show several missing packages, to solve this I downloaded them from their github repo (gorilla/mux, juju/ansiterm, juju/loggo, lunixbochs/vtclean, mattn/go-colorable, mattn/go-isatty, rs/cors) and put them on the go/src/github.com directory.
Then I got this:
go/src/github.com/mattn/go-isatty/isatty_tcgets.go:6:8: cannot find package "golang.org/x/sys/unix" in any of:
/streamserv/go/src/vendor/golang.org/x/sys/unix (vendor tree)
/streamserv/go/src/golang.org/x/sys/unix (from $GOROOT)
/root/go/src/golang.org/x/sys/unix (from $GOPATH)
Solved this by copy the files from go/src/cmd/vendor/golang.org to go/src/vendor/golang.org
I'm using Kubuntu 20.04
The text was updated successfully, but these errors were encountered:
After run
sudo ./launchServer.sh
the log of the server show several missing packages, to solve this I downloaded them from their github repo (gorilla/mux, juju/ansiterm, juju/loggo, lunixbochs/vtclean, mattn/go-colorable, mattn/go-isatty, rs/cors) and put them on the go/src/github.com directory.Then I got this:
Solved this by copy the files from go/src/cmd/vendor/golang.org to go/src/vendor/golang.org
I'm using Kubuntu 20.04
The text was updated successfully, but these errors were encountered: