Golang : Missing Subversion command
Problem :
Encounter this error message go: missing Subversion command
when trying go get some package.
For example :
go: missing Subversion command. See http://golang.org/s/gogetcmd
exec: "svn": executable file not found in $PATH
Solution :
Your local machine does not have Subversion install. Download and install Subversion from http://subversion.apache.org/packages.html
After installing Subversion, 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
+35k Golang : Strip slashes from string example
+6.1k Golang : Detect face in uploaded photo like GPlus
+5.3k PHP : Fix Call to undefined function curl_init() error
+7.1k Golang : Not able to grep log.Println() output
+33.4k Golang : All update packages with go get command
+20k nginx: [emerg] unknown directive "passenger_enabled"
+6.6k Golang : Calculate pivot points for a cross
+5.5k Linux/Unix/PHP : Restart PHP-FPM
+9.1k Golang : Find the length of big.Int variable example
+9.3k Golang : Read file with ioutil
+4.9k Golang : Customize scanner.Scanner to treat dash as part of identifier
+34.2k Golang : How to stream file to client(browser) or write to http.ResponseWriter?