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
+15.3k Golang : Get checkbox or extract multipart form data value example
+7.5k Golang : Example of how to detect which type of script a word belongs to
+13.5k Golang : How to determine if a year is leap year?
+9k Golang : How to control fmt or log print format?
+5.1k Unix/Linux : How to archive and compress entire directory ?
+4.5k MariaDB/MySQL : Form select statement or search query with Chinese characters
+10k Golang : Convert file unix timestamp to UTC time example
+18.8k Golang : Clearing slice
+10.3k Golang : Bubble sort example
+4.9k Golang : Issue HTTP commands to server and port example
+12k Golang : Flush and close file created by os.Create and bufio.NewWriter example
+18.9k Mac OSX : Homebrew and Golang