mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Merge #10706
10706: minor: Show how to create `~/.local/bin` r=lnicola a=lnicola Closes #10687 bors r+ Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
This commit is contained in:
commit
5cd36e89ef
1 changed files with 3 additions and 0 deletions
|
@ -150,12 +150,15 @@ On Linux to install the `rust-analyzer` binary into `~/.local/bin`, these comman
|
|||
|
||||
[source,bash]
|
||||
----
|
||||
$ mkdir -p ~/.local/bin
|
||||
$ curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-x86_64-unknown-linux-gnu.gz | gunzip -c - > ~/.local/bin/rust-analyzer
|
||||
$ chmod +x ~/.local/bin/rust-analyzer
|
||||
----
|
||||
|
||||
Make sure that `~/.local/bin` is listed in the `$PATH` variable and use the appropriate URL if you're not on a `x86-64` system.
|
||||
|
||||
You don't have to use `~/.local/bin`, any other path like `~/.cargo/bin` or `/usr/local/bin` will work just as well.
|
||||
|
||||
Alternatively, you can install it from source using the command below.
|
||||
You'll need the latest stable version of the Rust toolchain.
|
||||
|
||||
|
|
Loading…
Reference in a new issue