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
+16.4k Golang : convert string or integer to big.Int type
+15.4k nginx: [emerg] unknown directive "ssl"
+32.6k Golang : Copy directory - including sub-directories and files
+18.7k Golang : Find IP address from string
+7.7k Javascript : Push notifications to browser with Push.js
+4.2k Javascript : Empty an array example
+15k Golang : Submit web forms without browser by http.PostForm example
+22.3k Golang : Match strings by wildcard patterns with filepath.Match() function
+27.6k Golang : Convert integer to binary, octal, hexadecimal and back to integer
+10.5k Golang : Meaning of omitempty in struct's field tag
+6.4k Golang : How to get capacity of a slice or array?