#Rust
## 事象
以下のようなエラーが出る。
```
$ cargo --help
erro: the 'cargo' binary, normally provided by the 'cargo' component....
```
## 原因
不明。
## 解決方法
[[Cargo]]を再インストールする。
```console
rustup component remove cargo
rustup component add cargo
```
## 参考
- [error: the 'cargo' binary, normally provided by the 'cargo' component が出力された際の対応](https://zenn.dev/com4dc/scraps/21ddcc90ec67b1)