18
20

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 5 years have passed since last update.

【Rust】MacにRustをインストールして動作確認をするまで

Posted at

概要

RustをMacにインストールしてHello Worldまでやる

最終的にインストールされる重要な物

  • rustc
    Rustのコンパイラ

  • cargo
    Rustのパッケージマネージャ

  • rustup
    Rustのインストーラ

インストール

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

チェック

$ rustc --version
$ rustup --version
$ cargo --version
//それぞれバージョンが表示されたらOK

bash以外は自分でPATHを通す

$ echo 'export PATH=$HOME/.cargo/bin:$PATH' >> 任意の設定ファイル(例:~/.zprofile)
$ source 設定ファイル(例:~/.zprofile)

Hello World

hello.rs
fn main() {
    println!("Hello World!");
}

コンパイル

$ rustc hello.rs

実行

$ ./hello
Hello World!

アンインストール方法

$ rustup self uninstall

Happy Hacking :sunglasses: !

参考

18
20
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
18
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?