View previous topic :: View next topic |
Author |
Message |
juniper l33t
Joined: 22 Oct 2004 Posts: 959 Location: we the north
|
Posted: Wed May 22, 2024 11:04 pm Post subject: neovide: install a version of rust based program from git |
|
|
Hello all,
I want to install neovide. See this page
https://neovide.dev/installation.html
at the bottom it gives the command (for installation)
Code: |
cargo install --git https://github.com/neovide/neovide
|
My question: what if I want to install a certain version? how can I change the command? appending the command with --version VERSION gives the error
Code: |
error: the following required arguments were not provided:
[CRATE[@<VER>]]...
Usage: cargo install --git <URL> --version <VERSION> [CRATE[@<VER>]]
|
I also tried
Code: |
cargo install --git https://github.com/neovide/neovide@0.11.2
|
no dice
EDIT: Figured it out.
Code: |
cargo install --git https://github.com/neovide/neovide --tag 0.12.2
|
(it's tag. not version) |
|
Back to top |
|
|
juniper l33t
Joined: 22 Oct 2004 Posts: 959 Location: we the north
|
Posted: Fri Sep 27, 2024 4:54 pm Post subject: |
|
|
Hi all,
I have another question: how do I update a cargo respository? Same program. Neovide. |
|
Back to top |
|
|
|