Open azrin1972 opened 2 years ago
Hey,
this version is pretty old - I would consider installing Go from the Go website. There might be some issues with your version - I have not tried it.
But the dependencies you are missing are defined in the go.mod file and should be installed in your GOROOT or GOPATH. You can check your Go environment with:
go env
Are you working outside of your GOPATH directory?
You can also manually install the dependencies:
go get -u github.com/deepch/vdk/av
ok got it running
I found the right architecture for my jetson - its the arm64 version not amd64
https://go.dev/dl/go1.17.5.linux-arm64.tar.gz
now testing the rest
Thanks @mpolinowski
I'm getting CODEC not found error
hi,
I'm trying to run this from a Jetson Xavier NX.
I'm installing go using
apt-get install golang
instead of downloading it from the go websitecheck the go version I received this
go version go1.10.4 linux/arm64
calling go run . i received this unfortunately
go run: no go files listed
I've tried go run *.go and I received this:
anything that I missed?
Thank you