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

chore(book): update install.md #303

Merged
merged 2 commits into from
Feb 24, 2024
Merged
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
14 changes: 14 additions & 0 deletions book/getting-started/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,20 @@ cargo prove --version

If this works, go to the [next section](./quickstart.md) to compile and prove a simple zkVM program.

### Troubleshooting

If you have installed `cargo-prove` from source, it may conflict with sp1up's `cargo-prove` installation or vice versa. You can remove the `cargo-prove` that was installed from source with the following command:

```bash
rm ~/.cargo/bin/cargo-prove
```

Or, you can remove the `cargo-prove` that was installed through `sp1up`:

```bash
rm ~/.sp1/bin/cargo-prove
```

## Option 2: Building from Source

Make sure you have installed the [dependencies](https://github.com/rust-lang/rust/blob/master/INSTALL.md#dependencies) needed to build the rust toolchain from source.
Expand Down
Loading