You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The agave cli installer script ultimately requires Rustup to be installed on the user's system in order to link/name the platform tools as the solana toolchain on the user's system
If the user does not have rustup installed (like if they installed rust via brew install rust) the solana toolchain will not exist on their computer, and ultimately fail and result in errors like the following:
error: no such command: `+solana`
Cargo does not handle `+toolchain` directives.
Did you mean to invoke `cargo` through `rustup` instead?
Problem
The agave cli installer script ultimately requires Rustup to be installed on the user's system in order to link/name the platform tools as the
solana
toolchain on the user's systemIf the user does not have
rustup
installed (like if they installed rust viabrew install rust
) thesolana
toolchain will not exist on their computer, and ultimately fail and result in errors like the following:Proposed Solution
rustup
in the agave installer scriptThe text was updated successfully, but these errors were encountered: