锁定/存储/8D8B-150E/github.com/我的用户名/应用程序/go.mod:功能未实现

使用此命令在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


米琪卡哇伊
浏览 105回答 1
1回答

慕妹3146593

该命令使用文件锁定来确保在同时运行多个命令时以一致的状态读取文件。gogo.modgo您看到的错误表示包含文件 () 的文件系统不支持读锁定。(在大多数类Unix操作系统上,我们使用系统调用。RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implementedgo.mod/storage/mySdCardflock如果您无法将文件系统配置为支持锁定,并且您无法在支持锁定的其他文件系统中工作,请在&nbsp;https://golang.org/issue/new&nbsp;提交问题,并在问题描述中提及问题#37461(密切相关)。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go