Golang : Missing Bazaar command
Problem :
Encounter this error message go: missing Bazaar command
when trying go get some package.
For example :
go: missing Bazaar command. See http://golang.org/s/gogetcmd
package github.com/rbg/cli imports launchpad.net/goamz/aws: exec: "bzr": executable file not found in $PATH
Solution :
Your local machine does not have Bazaar install. Download and install Bazaar from http://wiki.bazaar.canonical.com/Download
After installing Bazaar, rerun the go get command again.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.9k Golang : Use NLP to get sentences for each paragraph example
+12.7k Golang : Get absolute path to binary for os.Exec function with exec.LookPath
+19.7k Golang : Set or Add HTTP Request Headers
+15.3k Golang : How to check if IP address is in range
+7.4k Golang : Word limiter example
+14k Golang : Human readable time elapsed format such as 5 days ago
+9.1k Golang : Capture text return from exec function example
+8.5k Golang : Generate Datamatrix barcode
+37.5k Upload multiple files with Go
+11.3k Golang : How to pipe input data to executing child process?
+20k Golang : Convert(cast) bytes.Buffer or bytes.NewBuffer type to io.Reader
+8.6k Android Studio : Import third-party library or package into Gradle Scripts