Windows "unrecognized import path"
GlCustard opened this issue · 9 comments
I've installed go and tested it.
I'm running Windows Vista
When installing I get
C:\Users\Chris>go get mumble.info/grumble/cmd/grumble
package mumble.info/grumble/cmd/grumble: unrecognized import path "mumble.info/g
rumble/cmd/grumble"
I found was the other issue with the same error but it was for OSX and... to be honest... I didn't understand the solution enough to make it work for Windows.
It may be a bit late, but I had the same problem recently. It seems to be resolved in #7.
You can probably use go get github.com/mumble-voip/grumble/cmd/grumble
, or go get -insecure -u mumble.info/grumble/cmd/grumble
.
@Liru go get github.com/mumble-voip/grumble/cmd/grumble
won't work because the import paths in the code are still pointing to mumble.info and using the -insecure
-flag is really creepy because everone between mumble.info and you can change to code while you are downloading it
the -insecure
-workaround also doesn't work anymore:
go get -insecure -u -v mumble.info/grumble/cmd/grumble
Fetching https://mumble.info/grumble/cmd/grumble?go-get=1
Parsing meta tags from https://mumble.info/grumble/cmd/grumble?go-get=1 (status code 404)
package mumble.info/grumble/cmd/grumble: unrecognized import path "mumble.info/grumble/cmd/grumble" (parse https://mumble.info/grumble/cmd/grumble?go-get=1: no go-import meta tags)
Fixed.
Am seeing this today on Debian:
$ go get mumble.info/grumble/cmd/grumble
package mumble.info/grumble/cmd/grumble: unrecognized import path "mumble.info/grumble/cmd/grumble" (https fetch: Get https://mumble.info/grumble/cmd/grumble?go-get=1: dial tcp 52.201.18.254:443: i/o timeout)
@NickSutton Sorry, but our servers are currently down.
Ahh bummer. Ah well, everyone deserves a break!
@NickSutton Fixed.
Is there a problem on your side or mine?
user@host:~$ go get mumble.info/grumble/cmd/grumble
package mumble.info/grumble/cmd/grumble: unrecognized import path "mumble.info/grumble/cmd/grumble" (https fetch: Get https://mumble.info/grumble/cmd/grumble?go-get=1: read tcp x.x.x.x:54211->52.201.18.254:443: read: connection reset by peer)
user@host:~$ go get github.com/mumble-voip/grumble/cmd/grumble
package mumble.info/grumble/pkg/acl: unrecognized import path "mumble.info/grumble/pkg/acl" (https fetch: Get https://mumble.info/grumble/pkg/acl?go-get=1: read tcp x.x.x.x:54215->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/ban: unrecognized import path "mumble.info/grumble/pkg/ban" (https fetch: Get https://mumble.info/grumble/pkg/ban?go-get=1: read tcp x.x.x.x:54216->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/blobstore: unrecognized import path "mumble.info/grumble/pkg/blobstore" (https fetch: Get https://mumble.info/grumble/pkg/blobstore?go-get=1: read tcp x.x.x.x:54217->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/cryptstate: unrecognized import path "mumble.info/grumble/pkg/cryptstate" (https fetch: Get https://mumble.info/grumble/pkg/cryptstate?go-get=1: read tcp x.x.x.x:54218->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/freezer: unrecognized import path "mumble.info/grumble/pkg/freezer" (https fetch: Get https://mumble.info/grumble/pkg/freezer?go-get=1: read tcp x.x.x.x:54219->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/htmlfilter: unrecognized import path "mumble.info/grumble/pkg/htmlfilter" (https fetch: Get https://mumble.info/grumble/pkg/htmlfilter?go-get=1: read tcp x.x.x.x:54220->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/logtarget: unrecognized import path "mumble.info/grumble/pkg/logtarget" (https fetch: Get https://mumble.info/grumble/pkg/logtarget?go-get=1: read tcp x.x.x.x:54221->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/mumbleproto: unrecognized import path "mumble.info/grumble/pkg/mumbleproto" (https fetch: Get https://mumble.info/grumble/pkg/mumbleproto?go-get=1: read tcp x.x.x.x:54222->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/packetdata: unrecognized import path "mumble.info/grumble/pkg/packetdata" (https fetch: Get https://mumble.info/grumble/pkg/packetdata?go-get=1: read tcp x.x.x.x:54223->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/serverconf: unrecognized import path "mumble.info/grumble/pkg/serverconf" (https fetch: Get https://mumble.info/grumble/pkg/serverconf?go-get=1: read tcp x.x.x.x:54224->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/sessionpool: unrecognized import path "mumble.info/grumble/pkg/sessionpool" (https fetch: Get https://mumble.info/grumble/pkg/sessionpool?go-get=1: read tcp x.x.x.x:54225->52.201.18.254:443: read: connection reset by peer)
package mumble.info/grumble/pkg/web: unrecognized import path "mumble.info/grumble/pkg/web" (https fetch: Get https://mumble.info/grumble/pkg/web?go-get=1: read tcp x.x.x.x:54226->52.201.18.254:443: read: connection reset by peer)
upd:
not actual (?). Now is work normal (download and complie)..