2016年12月26日 星期一

[Rust] Mac OSX Install Rust

紀錄一下在Mac安裝Rust語言的流程。

(1)輸入curl https://sh.rustup.rs -sSf | sh  會出現如下圖



































沒有特別情況的話,按下1以及Enter, 讓它以預設值安裝




































安裝完畢




































接下來要設環境變數,不然會找不到指令

編輯~/.bash_profile








增加一行export PATH="$PATH:"/Users/使用者名稱/.cargo/bin




























存檔後,關掉終端機重新開啟,輸入echo "$PATH" 確定路徑有成功寫入













我們來寫個範例吧


fn main()
{
    println!("Hello WOrld!")
}
~    

















編譯並執行


$ rustc hello.rs 
$ ./hello 


















參考來源:

https://www.rust-lang.org/en-US/install.html

沒有留言:

張貼留言