dhowden / tag

ID3, MP4 and OGG/FLAC metadata parsing in Go
BSD 2-Clause "Simplified" License
558 stars 72 forks source link

Installation instructions in README are outdated ("go get" is deprecated) #85

Closed AntoineBalaine closed 2 years ago

AntoineBalaine commented 2 years ago

Hello,

I can't install the package with : $ go get github.com/dhowden/tag/... because using "go get" is apparently deprecated. I also tried $ go install github.com/dhowden/tag and $ go install github.com/dhowden/tag@latest but neither works.

Could you please provide clarification for the install?

dhowden commented 2 years ago

Hi! Which version of Go are you using?

AntoineBalaine commented 2 years ago

I’m using go 1.17.1 darwin/amd64

Le 28 sept. 2021 à 15:29, David Howden @.***> a écrit :

Hi! Which version of Go are you using?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/dhowden/tag/issues/85#issuecomment-929671193, or unsubscribe https://github.com/notifications/unsubscribe-auth/AM7WYPQBPOZMZNTEJGW5YQTUEI6TFANCNFSM5EZCETIQ. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

dhowden commented 2 years ago

Ok, found this https://golang.org/doc/go-get-install-deprecation

I would think you need to do:

$ go install github.com/dhowden/tag/cmd/tag

(to install the tag command line tool). Can you try it out?

thoni56 commented 2 years ago

go install github.com/dhowden/tag/cmd/tag@latest

worked for me.