使用此命令在go中创建新模块时遇到了问题:它成功创建了go.mod文件,但后来抛出此错误>它不允许我安装任何go包!请帮助我解决此错误或如何解决它!go mod init <moduleName>go: RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implemented我运行了这个命令: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
1 回答
慕妹3146593
TA贡献1820条经验 获得超9个赞
该命令使用文件锁定来确保在同时运行多个命令时以一致的状态读取文件。go
go.mod
go
您看到的错误表示包含文件 () 的文件系统不支持读锁定。(在大多数类Unix操作系统上,我们使用系统调用。RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implemented
go.mod
/storage/mySdCard
flock
如果您无法将文件系统配置为支持锁定,并且您无法在支持锁定的其他文件系统中工作,请在 https://golang.org/issue/new 提交问题,并在问题描述中提及问题#37461(密切相关)。
- 1 回答
- 0 关注
- 104 浏览
添加回答
举报
0/150
提交
取消