Rust のインストールでは 最初にオプションを求められる

問題

以下のコマンドを実行して待っていれば勝手にinstallすると思っていた。

▼コマンド

curl https://sh.rustup.rs -sSf | sh

▼実行結果

info: downloading installer

Welcome to Rust!

This will download and install the official compiler for the Rust programming
language, and its package manager, Cargo.

〜〜〜中略〜〜〜

1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
>

だけどもなかなか進まない。というかinstallしてる感がない。どうしたものかと思ってRustをinstallする記事を探してみる。そしたら プロンプトに1と謎の文字を入力しているのを見つけた

ということで

以下をよく見直したら、オプションの選択みたいになっている。。。
気づかなかった😓

1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
>

ちゃんと 1 と入力する。

1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
>1

Rust is installed now. Great! が無事に表示された。

まとめ

1, 2, 3みたいなのがshell上で表示されたら、optionだと思う。

参考文献