Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix delve "can't load package: package internal" error

So I installed VSCODE on my windows machine as my main golang IDE and I guess my overall lack of go knowledge is making me experience this seemingly unsolvable error: I installed delve and wanted to use it as my debugger in vscode-go. I did everything as mentioned in the readme on https://github.com/Microsoft/vscode-go , yet for some reason when I run dlv debug I get error "can't load package: package internal: no buildable Go source files in c:\go\src\internal exit status 1". I couldn't find anything related to this folder on the internet, but I have never myself entered the path to src/internal in any of the config files. So this is making me really confused, since I thought if it was a common folder someone should have atleast gotten the same error once.

It occurs both in the vscode and in command prompt, also if dlv test is run. I also know it is not the issue with my folder structure/env variables since it complains about my package files missing too if I remove them in addition to also giving the same c:\go\src\internal error. It seems as if there is a setting somewhere to check that folder for source files too, but I can't find the setting and the dlv debug crashes after giving me the error.

like image 350
grssn Avatar asked Sep 12 '16 20:09

grssn


3 Answers

Got same issue with latest delve and vscode:

can't load package: package internal: no buildable Go source files in C:\Coding\Go\src\internal

and 'go build' working without any errors

Have to fallback to previous version of delve to get it working. It seems delve broke something or just need to update some things. Seems it enough just to replace dlv.exe in %GOPATH%\bin folder. I'm not sharing my version because it exe, but you can find it or build from sources

like image 171
Sunnyque Avatar answered Oct 10 '22 06:10

Sunnyque


I solved my problem that looks like same problem by changing launch.json file.

// before
"program": "${workspaceRoot}

// after changing 
"program": "${workspaceRoot}/src/github.com/myproje/hello",
like image 38
Ali Altun Avatar answered Oct 10 '22 07:10

Ali Altun


I had the same problem. When i check, {fileDirName} points my .vscode folder. So i've just given my path manuelly and it works.

I've replaced this

"program": "${fileDirname}"

with this

"program": "c:/Go/src/MyGoProject"
like image 36
Furkan Öztürk Avatar answered Oct 10 '22 06:10

Furkan Öztürk