RLock /storage/8D8B-150E/github.com/my-username/App/go.mod: 功能未实现
RLock /storage/8D8B-150E/github.com/my-username/App/go.mod: function not implemented
我在使用此命令创建新模块时遇到问题:go mod init <moduleName>
它成功创建了 go.mod 文件,但稍后抛出此错误 go: RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implemented
并且它不允许我来安装任何 go 包!请帮我解决这个错误,或者我该如何解决!!
我运行这个命令:
go mod init myApp
我得到的输出:
go: creating new go.mod: module myApp
go: updating go.mod: Lock /storage/8D8B-150E/Go/src/github.com/my-username/App/go.mod: function not implemented
go
命令使用文件锁定来确保 go.mod
文件在您同时 运行 多个 go
命令时以一致的状态读取。
您看到的 RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implemented
错误表明包含 go.mod
文件 (/storage/mySdCard
) 的文件系统不支持读取锁定。 (在大多数类 Unix 操作系统上,我们使用 flock
系统调用。)
如果您无法将文件系统配置为支持锁定,并且在支持锁定的不同文件系统中工作对您来说不切实际,请在 https://golang.org/issue/new, and mention issue #37461(密切相关)中提交问题问题描述。
我在使用此命令创建新模块时遇到问题:go mod init <moduleName>
它成功创建了 go.mod 文件,但稍后抛出此错误 go: RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implemented
并且它不允许我来安装任何 go 包!请帮我解决这个错误,或者我该如何解决!!
我运行这个命令:
go mod init myApp
我得到的输出:
go: creating new go.mod: module myApp
go: updating go.mod: Lock /storage/8D8B-150E/Go/src/github.com/my-username/App/go.mod: function not implemented
go
命令使用文件锁定来确保 go.mod
文件在您同时 运行 多个 go
命令时以一致的状态读取。
您看到的 RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implemented
错误表明包含 go.mod
文件 (/storage/mySdCard
) 的文件系统不支持读取锁定。 (在大多数类 Unix 操作系统上,我们使用 flock
系统调用。)
如果您无法将文件系统配置为支持锁定,并且在支持锁定的不同文件系统中工作对您来说不切实际,请在 https://golang.org/issue/new, and mention issue #37461(密切相关)中提交问题问题描述。