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
+26.6k Golang : Convert file content into array of bytes
+36.2k Golang : Convert(cast) int64 to string
+19.4k Golang : Get current URL example
+8.6k Golang : Find duplicate files with filepath.Walk
+51.7k Golang : How to get time in milliseconds?
+36.2k Golang : Convert date or time stamp from string to time.Time type
+7.2k Linux : How to fix Brother HL-1110 printing blank page problem
+12.7k Golang : Convert int(year) to time.Time type
+8.9k Golang : Handle sub domain with Gin
+9.8k Golang : Ordinal and Ordinalize a given number to the English ordinal numeral
+6.2k Golang : Selection sort example
+13.6k Generate salted password with OpenSSL example