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
+4.8k Python : Convert(cast) bytes to string example
+3.8k Detect if Google Analytics and Developer Media are loaded properly or not
+10.5k Golang : Command line file upload program to server example
+21.3k Golang : Convert string slice to struct and access with reflect example
+5.5k Linux : Disable and enable IPv4 forwarding
+40.7k Golang : How to count duplicate items in slice/array?
+17.3k Golang : Defer function inside init()
+11k Golang : Fix fmt.Scanf() on Windows will scan input twice problem
+7.9k Golang : Routes multiplexer routing example with regular expression control
+7.6k Javascript : Put image into Chrome browser's console
+12.3k Golang : Send data to /dev/null a.k.a blackhole with ioutil.Discard