We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Go runtime installed via Homebrew.
go version go version go1.10.2 darwin/amd64
Session:
go run tastypl.go -input ../tastyworks_transactions_xxx.csv -printpl -positions tastypl.go:28:2: cannot find package "github.com/golang/glog" in any of: /usr/local/Cellar/go/1.10.2/libexec/src/github.com/golang/glog (from $GOROOT) /Users/agrande/go/src/github.com/golang/glog (from $GOPATH) tastypl.go:29:2: cannot find package "github.com/shopspring/decimal" in any of: /usr/local/Cellar/go/1.10.2/libexec/src/github.com/shopspring/decimal (from $GOROOT) /Users/agrande/go/src/github.com/shopspring/decimal (from $GOPATH) tastypl.go:30:2: cannot find package "github.com/wcharczuk/go-chart" in any of: /usr/local/Cellar/go/1.10.2/libexec/src/github.com/wcharczuk/go-chart (from $GOROOT) /Users/agrande/go/src/github.com/wcharczuk/go-chart (from $GOPATH) tastypl.go:31:2: cannot find package "github.com/wcharczuk/go-chart/util" in any of: /usr/local/Cellar/go/1.10.2/libexec/src/github.com/wcharczuk/go-chart/util (from $GOROOT) /Users/agrande/go/src/github.com/wcharczuk/go-chart/util (from $GOPATH)
Had to manually install additional modules:
go get github.com/golang/glog go get github.com/shopspring/decimal github.com/wcharczuk/go-chart
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Go runtime installed via Homebrew.
Session:
Had to manually install additional modules:
The text was updated successfully, but these errors were encountered: