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
+20k nginx: [emerg] unknown directive "passenger_enabled"
+9.6k Golang : Get current, epoch time and display by year, month and day
+5.8k Golang : Missing Subversion command
+28.1k Get file path of temporary file in Go
+7k Golang : How to iterate a slice without using for loop?
+16.5k Golang : Get own process identifier
+5.3k Golang : Stop goroutine without channel
+7.1k Golang : Process json data with Jason package
+47.2k Golang : Convert int to byte array([]byte)
+9.4k Golang : Find correlation coefficient example
+6.5k Android Studio : Hello World example
+9.6k Golang : Function wrapper that takes arguments and return result example