After installing rustup, the standard tool chain is not configured

I installed Rust using rustup , but when I try to enter the Rust command, for example, cargoor rustcin my console, the following error appears:

error: no default toolchain configured

Is this a known issue? I am using Windows 7.

+6
source share
2 answers

If it seems that rustup was unable to successfully install and configure a stable toolchain, you can do this manually:

rustup install stable
rustup default stable

After testing, it seems that my incomplete installation may be caused by a network error. You can also try reinstalling to fix the problem.

+19
source

-, rustc, .

, --, , -, .

+5

All Articles