I got this error trying to compile some GO code today and the usual searches didn’t immediately turn up the answer to my issue. The error output made it seem that something was wrong with the path setup in my GO environment which lead me into a dead end of searches and attempted resolutions. The actual problem was very simple. I was importing with a path relative to the project directory and GO no longer approves of that. All import paths should now be relative to the src directory within the directory given by the $GOPATH environment variable. Bad, don’t [Read on…]