博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VScode-Go can't load package: package .: no buildable Go source files in
阅读量:5117 次
发布时间:2019-06-13

本文共 508 字,大约阅读时间需要 1 分钟。

在VScode中调试Go程序时提示:

can't load package: package .: no buildable Go source files in d:\my_workspace\go_ws
exit status 1
Process exiting with code: 1
 
lauch.json配置如下:

{

"version": "0.2.0",
"configurations": [{

"name": "Launch",

"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${workspaceRoot}\\",
"env": {},
"args": [],
"showLog": true
}]
}

问题出在"program": "${workspaceRoot}\\",将其修改为项目路径,则错误解决。

 

转载于:https://www.cnblogs.com/yshyee/p/6734169.html

你可能感兴趣的文章
window添加右键菜单
查看>>
入手腾龙SP AF90mm MACRO
查看>>
Window7上搭建symfony开发环境(PEAR)
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
一些方便系统诊断的bash函数
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>
css3之transform-origin
查看>>
Master选举原理
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
小别离
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
Java 多态 虚方法
查看>>
万能的SQLHelper帮助类
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Html5 离线页面缓存
查看>>