golang には、優れたサードパーティ ライブラリが数多くあります。go 言語プログラミングを使用するときは、サードパーティ ライブラリをよく使用します。次に、go 言語チュートリアル のコラムで、go サードパーティのインストール方法を紹介します。パーティライブラリ、ライブラリメソッド。
go help view コマンド
The commands are: build compile packages and dependencies clean remove object files doc show documentation for package or symbol env print Go environment information fix run go tool fix on packages fmt run gofmt on package sources generate generate Go files by processing source get download and install packages and dependencies install compile and install packages and dependencies list list packages run compile and run Go program test test packages tool run specified go tool version print Go version vet run go tool vet on packages Use "go help [command]" for more information about a command. Additional help topics: c calling between Go and C buildmode description of build modes filetype file types gopath GOPATH environment variable environment environment variables importpath import path syntax packages description of package lists testflag description of testing flags testfunc description of testing functions Use "go help [topic]" for more information about that topic.
ここでは Go get を使用します。これにより、github のサードパーティ ライブラリを直接取得し、 go install インストールを使用できます。サードパーティ ライブラリ
たとえば、gocurse のインストールを例に挙げます (git パスは https://github.com/mpatraw/gocurse.git です)
go get github.com/mpatraw/gocurse
Go 言語の詳細については、知識がある場合は、php Chinese Netgo 言語チュートリアル 列に注意してください。
以上がGo サードパーティ ライブラリをインストールする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。