使用此命令在go中創(chuàng)建新模塊時(shí)遇到了問(wèn)題:它成功創(chuàng)建了go.mod文件,但后來(lái)拋出此錯(cuò)誤>它不允許我安裝任何go包!請(qǐng)幫助我解決此錯(cuò)誤或如何解決它!go mod init <moduleName>go: RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implemented我運(yùn)行了這個(gè)命令: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貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超9個(gè)贊
該命令使用文件鎖定來(lái)確保在同時(shí)運(yùn)行多個(gè)命令時(shí)以一致的狀態(tài)讀取文件。go
go.mod
go
您看到的錯(cuò)誤表示包含文件 () 的文件系統(tǒng)不支持讀鎖定。(在大多數(shù)類Unix操作系統(tǒng)上,我們使用系統(tǒng)調(diào)用。RLock /storage/mySdCard/github.com/my-username/App/go.mod: function not implemented
go.mod
/storage/mySdCard
flock
如果您無(wú)法將文件系統(tǒng)配置為支持鎖定,并且您無(wú)法在支持鎖定的其他文件系統(tǒng)中工作,請(qǐng)?jiān)?nbsp;https://golang.org/issue/new 提交問(wèn)題,并在問(wèn)題描述中提及問(wèn)題#37461(密切相關(guān))。
- 1 回答
- 0 關(guān)注
- 149 瀏覽
添加回答
舉報(bào)
0/150
提交
取消