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
+6.2k Golang : Create new color from command line parameters
+4.8k Unix/Linux : How to pipe/save output of a command to file?
+25.7k Golang : Generate MD5 checksum of a file
+8.1k Golang : What fmt.Println() can do and println() cannot do
+11k Golang : Get UDP client IP address and differentiate clients by port number
+9.4k Golang : How to control fmt or log print format?
+26k Golang : Daemonizing a simple web server process example
+7k Golang : Decode XML data from RSS feed
+13.6k Golang : Read from buffered reader until specific number of bytes
+6.1k Golang : Compound interest over time example
+21k Golang : Underscore or snake_case to camel case example