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
When trying to install a toolchain that's missing components you may get an error message, e.g.:
$ rustup toolchain add nightly-2019-07-23
info: syncing channel updates for 'nightly-2019-07-23-x86_64-unknown-linux-gnu'
info: latest update on 2019-07-23, rust version 1.38.0-nightly (e649e9034 2019-07-22)
error: component 'clippy' for target 'x86_64-unknown-linux-gnu' is unavailable for download for channel nightly-2019-07-23
Sometimes not all components are available in any given nightly. If you don't need the component, you can remove it with:
rustup component remove --toolchain nightly-2019-07-23 --target x86_64-unknown-linux-gnu clippy
The suggested action is useless, however:
$ rustup component remove --toolchain nightly-2019-07-23 --target x86_64-unknown-linux-gnu clippy
error: toolchain 'nightly-2019-07-23-x86_64-unknown-linux-gnu' is not installed
The correct suggestion would be to run the original command again with --profile minimal
The text was updated successfully, but these errors were encountered:
rbtcollins
changed the title
Useless suggestion when installing toolchain with missing components
installing toolchain with missing components suggests doing 'rustup component remove'
Mar 30, 2021
rbtcollins
changed the title
installing toolchain with missing components suggests doing 'rustup component remove'
installing nightly with missing components suggests doing 'rustup component remove'
Mar 30, 2021
When trying to install a toolchain that's missing components you may get an error message, e.g.:
The suggested action is useless, however:
The correct suggestion would be to run the original command again with
--profile minimal
The text was updated successfully, but these errors were encountered: