Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Go get doesn't work, I have git

Following go getting started page, want to install revel, it says it can't find hg, I have git and I am comfortable with it. Double checked %PATH%, it has Git/cmd and Git/bin

Go get not working

like image 336
Ashok Kumar Sahoo Avatar asked Dec 25 '22 03:12

Ashok Kumar Sahoo


1 Answers

package revel

import "github.com/revel/revel"

Packages imported by revel

The go get command installs a package and any missing import dependencies. The revel package imports "code.google.com/p/go.net/websocket" from a Mercurial repository.

Install Mercurial (hg): Mercurial Download.

like image 112
peterSO Avatar answered Jan 07 '23 11:01

peterSO