Search code examples
rustapple-m1toolchainrustup

Cannot find `cargo` binary on Rust toolchain on Apple M1


I got this error when I override the rustup toolchain to use the rust-toolchain in the repo directory:

error: the 'cargo' binary, normally provided by the 'cargo' component, is not applicable to the '1.69.0-aarch64-apple-darwin' toolchain

The content of my rustup show:

❯ rustup show
Default host: aarch64-apple-darwin
rustup home:  /Users/myhome/.rustup

installed toolchains
--------------------

stable-aarch64-apple-darwin (default)
stable-x86_64-unknown-linux-gnu
nightly-2022-11-04-aarch64-apple-darwin
1.67.0-aarch64-apple-darwin
1.67.0-x86_64-unknown-linux-gnu
1.67.1-aarch64-apple-darwin
1.68.0-aarch64-apple-darwin
1.69.0-aarch64-apple-darwin

active toolchain
----------------

1.69.0-aarch64-apple-darwin (overridden by '/Users/myhome/myrepo/rust-toolchain')
rustc 1.69.0 (84c898d65 2023-04-16)

The rust-toolchain file:

1.69.0

My Mac:

enter image description here

Does anyone know what happens?


Solution

  • Could you try these commands:

    rustup component remove cargo
    rustup component add cargo
    

    Reference: https://github.com/rust-lang/rustup/issues/2704