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
+8.5k Python : Fix SyntaxError: Non-ASCII character in file, but no encoding declared
+10.6k Golang : Get currencies exchange rates example
+37.9k Golang : Read a text file and replace certain words
+11.5k Golang : Concurrency and goroutine example
+6k Java : Human readable password generator
+26.6k Golang : Convert file content into array of bytes
+26.2k Golang : Get executable name behind process ID example
+5.9k Golang : How to verify input is rune?
+6.1k Golang : How to get capacity of a slice or array?
+41.3k Golang : Convert string to array/slice
+20.6k Golang : Saving private and public key to files