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
+10.6k Golang : Underscore string example
+10.4k Generate Random number with math/rand in Go
+9.2k Golang : Generate random Chinese, Japanese, Korean and other runes
+7.5k Golang : Dealing with struct's private part
+15.2k Golang : Delete certain files in a directory
+17.9k Golang : How to log each HTTP request to your web server?
+12.3k Golang : Validate email address
+23.8k Golang : Use regular expression to validate domain name
+9.4k Golang : Scramble and unscramble text message by randomly replacing words
+4.8k HTTP common errors and their meaning explained
+10.4k Golang : Simple Jawi(Yawi) to Rumi(Latin/Romanize) converter
+36.3k Golang : Convert date or time stamp from string to time.Time type