From e98f882c47ccb277f49297a6bc55ec6bfce3f5d1 Mon Sep 17 00:00:00 2001 From: Madhav Goyal <88841339+hydrogenbond007@users.noreply.github.com> Date: Wed, 23 Aug 2023 12:34:08 +0530 Subject: [PATCH] Update installation.md --- src/getting_started/installation.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/getting_started/installation.md b/src/getting_started/installation.md index 2afb193..2a1f387 100644 --- a/src/getting_started/installation.md +++ b/src/getting_started/installation.md @@ -2,11 +2,14 @@ ## Rust -Go [here](https://www.rust-lang.org/tools/install) to install Rust. +Go [here](https://www.rust-lang.org/tools/install) to install Rust or run +``` +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh +``` ## Solana -Go [here](https://docs.solana.com/cli/install-solana-cli-tools) to install Solana and then run `solana-keygen new` to create a keypair at the default location. Anchor uses this keypair to run your program tests. +Go [here](https://docs.solana.com/cli/install-solana-cli-tools) to install Solana and then run `solana-keygen new` to create a keypair and saves the private seed in a json file at the default location. Anchor uses this keypair to run your program tests. ## Yarn @@ -21,7 +24,7 @@ Anchor version manager is a tool for using multiple versions of the anchor-cli. Install `avm` using Cargo. Note this will replace your `anchor` binary if you had one installed. ``` -cargo install --git https://github.com/project-serum/anchor avm --locked --force +cargo install --git https://github.com/coral-xyz/anchor avm --locked --force ``` On Linux systems you may need to install additional dependencies if cargo install fails. E.g. on Ubuntu: