Sử dụng bia
Tôi đã cài đặt nó bằng cách sử dụng brew
.
$ brew install go
Khi hoàn thành nếu bạn chạy lệnh brew này, nó sẽ hiển thị thông tin sau:
$ brew info go
go: stable 1.4.2 (bottled), HEAD
Go programming environment
https://golang.org
/usr/local/Cellar/go/1.4.2 (4676 files, 158M) *
Poured from bottle
From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/go.rb
==> Options
--with-cc-all
Build with cross-compilers and runtime support for all supported platforms
--with-cc-common
Build with cross-compilers and runtime support for darwin, linux and windows
--without-cgo
Build without cgo
--without-godoc
godoc will not be installed for you
--without-vet
vet will not be installed for you
--HEAD
Install HEAD version
==> Caveats
As of go 1.2, a valid GOPATH is required to use the `go get` command:
https://golang.org/doc/code.html#GOPATH
You may wish to add the GOROOT-based install location to your PATH:
export PATH=$PATH:/usr/local/opt/go/libexec/bin
Những phần quan trọng có những dòng này:
/usr/local/Cellar/go/1.4.2 (4676 tệp, 158M) *
xuất PATH = $ PATH: / usr / local / opt / go / libexec / bin
Thiết lập môi trường của GO
Điều đó cho thấy nơi GO đã được cài đặt. Chúng ta cần làm như sau để thiết lập môi trường của GO:
$ export PATH=$PATH:/usr/local/opt/go/libexec/bin
$ export GOPATH=/usr/local/opt/go/bin
Sau đó, bạn có thể kiểm tra bằng GO để xem nó có được cấu hình đúng không:
$ go env
GOARCH="amd64"
GOBIN=""
GOCHAR="6"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/usr/local/opt/go/bin"
GORACE=""
GOROOT="/usr/local/Cellar/go/1.4.2/libexec"
GOTOOLDIR="/usr/local/Cellar/go/1.4.2/libexec/pkg/tool/darwin_amd64"
CC="clang"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fno-common"
CXX="clang++"
CGO_ENABLED="1"
Thiết lập json2csv
Có vẻ tốt, vì vậy hãy cài đặt json2csv
:
$ go get github.com/jehiah/json2csv
$
Chuyện gì vừa xảy ra vậy? Nó đã cài đặt nó. Bạn có thể kiểm tra như thế này:
$ $ ls -l $GOPATH/bin
total 5248
-rwxr-xr-x 1 sammingolelli staff 2686320 Jun 9 12:28 json2csv
OK, vậy tại sao tôi không thể gõ json2csv
vào vỏ của mình? Đó là bởi vì /bin
thư mục bên dưới $GOPATH
không phải trên của bạn $PATH
.
$ type -f json2csv
-bash: type: json2csv: not found
Vì vậy, hãy tạm thời thêm nó:
$ export PATH=$GOPATH/bin:$PATH
Và kiểm tra lại:
$ type -f json2csv
json2csv is hashed (/usr/local/opt/go/bin/bin/json2csv)
Bây giờ nó ở đó:
$ json2csv --help
Usage of json2csv:
-d=",": delimiter used for output values
-i="": /path/to/input.json (optional; default is stdin)
-k=[]: fields to output
-o="": /path/to/output.json (optional; default is stdout)
-p=false: prints header to output
-v=false: verbose output (to stderr)
-version=false: print version string
Thêm các sửa đổi chúng tôi đã thực hiện $PATH
và $GOPATH
cho bạn $HOME/.bash_profile
để làm cho chúng tồn tại giữa các lần khởi động lại.