Created
August 12, 2021 04:12
-
-
Save fhk/f49fbfe7907d96ead4af385addc520b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://golang.org/dl/go1.16.7.linux-amd64.tar.gz; | |
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.16.7.linux-amd64.tar.gz; | |
export PATH=$PATH:/usr/local/go/bin; | |
export GOPATH=$HOME/go; | |
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin; | |
go get github.com/fraugster/parquet-go/cmd/csv2parquet; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment