Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Changes
Page history
Update Rust
authored
Nov 07, 2023
by
Miki, Hiromitsu
Show whitespace changes
Inline
Side-by-side
Rust.md
View page @
20d9748f
...
...
@@ -7,14 +7,11 @@
以下手順で Rust の GNU 版をインストールする
1.
「
[
Rust をインストール
](
https://www.rust-lang.org/ja/tools/install
)
」のページから「RUSTUP-INIT.exe(64-BIT)」を選択してダウンロードする
2.
ダウンロードした「rustup-init.exe」を実行する
3.
「3」(Don't install the prerequisites) を入力する
4.
「2」(Customize installation) を入力する
5.
Default host triple に「x86_64-pc-windows-gnu」を入力する
6.
Default toolchain に「stable」を入力する (デフォルトのため、何も入力せず Enter を押すだけでよい)
7.
Profile に「default」を入力する (デフォルトのため、何も入力せず Enter を押すだけでよい)
8.
Modify PATH variable に「Y」を入力する (デフォルトのため、何も入力せず Enter を押すだけでよい)
9.
「1」(Proceed with installation) を入力する (デフォルトのため、何も入力せず Enter を押すだけでよい)
2.
ダウンロードした「rustup-init.exe」について、コマンドプロンプトから以下のコマンドを実行する
```
rustup-init.exe --default-host x86_64-pc-windows-gnu -y
```
## Visual Studio Code
...
...
...
...