1
我對Go並不熟悉。我想將此應用程序https://github.com/kahing/goofys更新爲最新版本(現在它的v0.0.10)。 我試過如何更新亞馬遜Linux中的Go應用程序
$ go get github.com/kahing/goofys
$ go install github.com/kahing/goofys
但是版本不變。我需要幫助。
我對Go並不熟悉。我想將此應用程序https://github.com/kahing/goofys更新爲最新版本(現在它的v0.0.10)。 我試過如何更新亞馬遜Linux中的Go應用程序
$ go get github.com/kahing/goofys
$ go install github.com/kahing/goofys
但是版本不變。我需要幫助。
剛跑,-u
用於更新。
go get -u github.com/kahing/goofys
然後運行(可選步驟,如果你看到在$GOPATH/bin
二進制goofys
;去安裝,不需要看評論爲什麼)
go install github.com/kahing/goofys
非常感謝您! – Maca
安裝是多餘的。如果引用的軟件包是可安裝的,'go get'將安裝二進制文件。 – Adrian
@阿德里安,這是真的。其實'kahing/goofys'需要'去安裝',否則它不會安裝。 – jeevatkm