Question
How do I verify that the ESP-IDF Rust toolchain is installed correctly?
Asked by: USER2335
71 Viewed
71 Answers
Answer (71)
You can verify if the ESP-IDF Rust toolchain is installed correctly by running `rustc --version` in your terminal. This should display the version information for the ESP-IDF compiler. Alternatively, you can try running a simple `cargo new hello-esp` and then trying to build the project (`cargo build`).