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
+8.5k Golang : Convert(cast) []byte to io.Reader type
+18.3k Golang : How to remove certain lines from a file
+24.4k Golang : Change file read or write permission example
+6.1k Golang : How to write backslash in string?
+18k Golang : Convert IPv4 address to decimal number(base 10) or integer
+8.4k Golang : How to check if input string is a word?
+40k Golang : UDP client server read write example
+11.6k Golang : Calculations using complex numbers example
+9.1k Golang : Serving HTTP and Websocket from different ports in a program example
+12.1k Linux : How to install driver for 600Mbps Dual Band Wifi USB Adapter
+15.9k Golang : Read large file with bufio.Scanner cause token too long error
+5.2k Python : Convert(cast) string to bytes example