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
+6.6k Nginx : Password protect a directory/folder
+10.2k Swift : Convert (cast) String to Integer
+7.2k SSL : How to check if current certificate is sha1 or sha2 from command line
+32.7k Delete a directory in Go
+9.4k Golang : Copy map(hash table) example
+6.2k Golang : Combine slices of complex numbers and operation example
+16.4k Golang : Gzip file example
+31.9k Golang : Convert []string to []byte examples
+13.9k Golang : Get uploaded file name or access uploaded files
+12.7k Golang : How to calculate the distance between two coordinates using Haversine formula
+24.5k Golang : Generate MD5 checksum of a file
+10.7k Golang : Generate random elements without repetition or duplicate