Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed old serum link to coral #88

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.
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 save the private seed in a JSON file at the default location. Anchor uses this keypair to run your program tests.


## Yarn

Expand All @@ -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:
Expand Down