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
+18.1k Golang : Qt image viewer example
+25.8k Golang : How to write CSV data to file
+4.7k Javascript : Detect when console is activated and do something about it
+8.3k Golang : Add build version and other information in executables
+22.5k Golang : Read directory content with filepath.Walk()
+41.1k Golang : How to check if a string contains another sub-string?
+10.1k Golang : Read file and convert content to string
+17.3k Golang : When to use init() function?
+7.5k Golang : How to detect if a sentence ends with a punctuation?
+10k Golang : Sort and reverse sort a slice of integers
+21.5k Golang : How to force compile or remove object files first before rebuild?
+12.1k Golang : Setup API server or gateway with Caddy and http.ListenAndServe() function example