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
+3.6k Java : Get FX sentiment from website example
+6.9k Android Studio : Hello World example
+7.6k SSL : How to check if current certificate is sha1 or sha2 from command line
+23.9k Golang : Use regular expression to validate domain name
+12.9k Python : Convert IPv6 address to decimal and back to IPv6
+14.5k Golang : Find network of an IP address
+12.5k Golang : Forwarding a local port to a remote server example
+19.3k Golang : Get RGBA values of each image pixel
+14k Golang : Compress and decompress file with compress/flate example
+8.2k Golang : Add build version and other information in executables
+7.2k Golang : Check if one string(rune) is permutation of another string(rune)