Golang : package is not in GOROOT during compilation
Alright, just putting down here for my own future reference, in case of future encounter with this weird error message during compilation process.
package xxx is not in GOROOT
Basically the problem is caused by go modules. To fix this problem, first check your Golang's environment with go env
to see if GO111MODULE=on
If yes, then set it to OFF.
If you're using a build script to compile your code. Remember to SET GO111MODULE=off
Before compiling, best to clean up the module cache by issuing this command.
go clean --modcache
Hope this helps and happy coding!
Reference :
https://dev.to/maelvls/why-is-go111module-everywhere-and-everything-about-go-modules-24k
See also : Golang : How to solve "too many .rsrc sections" error?
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.8k Golang : Get local time and equivalent time in different time zone
+3.9k Golang : Markov chains to predict probability of next state example
+10k Golang : Exit, terminating or aborting a program
+4.7k Golang : Skip or discard items of non-interest when iterating example
+19.4k Fix "Failed to start php5-fpm.service: Unit php5-fpm.service is masked."
+36.7k Golang : Convert []byte to image
+14.3k Golang : Gzip file example
+4.8k Golang : Warp text string by number of characters or runes example
+4.3k Golang : List all packages and search for certain package
+4.2k Get website traffic ranking with Similar Web or Alexa
+8.2k Golang : Get currencies exchange rates example
+20.9k Golang : Print out struct values in string format