I'm on Xubuntu 22.04 #16
-
I'm on Xubuntu 22.04, how do I install this? |
Beta Was this translation helpful? Give feedback.
Answered by
randoragon
Dec 30, 2024
Replies: 1 comment
-
Hi, you can install it either from crates.io or this GitHub. I recommend GitHub, because you are guaranteed the latest version then. Crates.io only gets updated on new release, which does not happen quite as often. GitHubgit clone https://github.com/randoragon/rsid3
cd rsid3
cargo install --path . crates.iocargo install '[email protected]' It is necessary to pin the specific version at the moment, because there is no stable release yet. In both methods, the binary will be placed in |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
randoragon
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, you can install it either from crates.io or this GitHub.
I recommend GitHub, because you are guaranteed the latest version then. Crates.io only gets updated on new release, which does not happen quite as often.
GitHub
crates.io
cargo install '[email protected]'
It is necessary to pin the specific version at the moment, because there is no stable release yet.
In both methods, the binary will be placed in
$CARGO_HOME/bin
. It should then be available to you, assuming you have$CARGO_HOME/bin
in yourPATH
.