26
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

新しいRustにバージョンアップする

Posted at

Rustをインストールする

Windows Subsystem for Linux (WSL)上にインストールした Ubuntu を使うと便利である。

rustup は,システムプログラミング言語 Rust の各種ツールを管理できる。

Rustのインストール
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

image.png

新しいRustにバージョンアップする

コマンド rustup を使って最新バージョンに更新することができる。

Rustのバージョンアップ
$ rustup update

image.png

各種ツールのバージョン確認(2020年3月14日現在)
$ cargo --version
cargo 1.42.0 (86334295e 2020-01-31)
$ rustc --version
rustc 1.42.0 (b8cedc004 2020-03-09)
$ rustdoc --version
rustdoc 1.42.0 (b8cedc004 2020-03-09)

関連リンク

26
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
26
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?