Go语言 VS< package>代码中的“无法导入当前文件”不包括在工作区模块中

gab6jxml  于 2023-09-28  发布在  Go
关注(0)|答案(1)|浏览(150)

我无法导入URL包。即使在我使用“go get github....”在我的系统上安装了这个包,并确保它们存在于他们的go.mod文件中,我仍然显示:

could not import <package> current file is not included in a workspace module

我记得就在几周前,我甚至不需要在系统上的每个Golang Project目录中运行“go work init”。但是现在我被要求将这些添加到工作区。在我从终端安装任何软件包之后,我只需要在代码中导入{}安装的软件包,代码就可以工作了!
我目前正在尝试使用on understanding 'ebitengine'创建一个项目,为此我运行了以下命令

go mod init PROJECT (in the directory same as the code)
go work init
go get -u github.com/hajimehoshi/ebiten/v2
go mod init PROJECT (Again because the error was still being shown)
go work init (Again because the error was still being shown)

请帮助我了解我的系统有什么问题,以及为什么我无法正确导入软件包。
运行'go env'的输出为:

GO111MODULE="auto"
GOARCH="amd64"
GOBIN="/home/user/go/bin"
GOCACHE="/home/user/.cache/go-build"
GOENV="/home/user/.config/go/env"
GOEXE=""
GOEXPERIMENT=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOINSECURE=""
GOMODCACHE="/home/user/go/pkg/mod"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/user/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GOVCS=""
GOVERSION="go1.20.2"
GCCGO="gccgo"
GOAMD64="v1"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/home/user/Desktop/learnings/go/14SwitchCase/go.mod"
GOWORK="/home/user/Desktop/learnings/go/go.work"
CGO_CFLAGS="-O2 -g"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-O2 -g"
CGO_FFLAGS="-O2 -g"
CGO_LDFLAGS="-O2 -g"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build1152057857=/tmp/go-build -gno-record-gcc-switches"

类似地,我的bashrc包含:

export GOPATH=$HOME/go
export GOBIN=$GOPATH/bin
export PATH=${PATH}:$GOBIN

请帮助我理解我哪里出错了,为什么我的VS代码不能正常工作了。

q5lcpyga

q5lcpyga1#

问题是我的~/.profile和~/.bashrc文件中的GOPATH & GOROOT错误。
我用下面的行替换了现有的GOPATH和GOROOT,问题得到了解决:
export GOPATH=$HOME/go
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

相关问题