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
+9.6k Golang : Turn string or text file into slice example
+5.4k Golang : Detect words using using consecutive letters in a given string
+7.9k Golang : HTTP Server Example
+5.7k Unix/Linux : How to open tar.gz file ?
+6.8k Golang : Gargish-English language translator
+29.2k Golang : Login(Authenticate) with Facebook example
+29.6k Golang : How to declare kilobyte, megabyte, gigabyte, terabyte and so on?
+11.8k Golang : Sort and reverse sort a slice of runes
+8.8k Golang : Inject/embed Javascript before sending out to browser example
+10k Golang : Embed secret text string into binary(executable) file
+25.1k Golang : Convert long hexadecimal with strconv.ParseUint example