位置:首頁 > 高級語言 > Rust教學 > Rust下載和安裝

Rust下載和安裝

1、在Linux和Mac上安裝Rust:


在Linux和Mac上安裝Rust(穩定的二進製)的一個簡單的方法,隻需要在shell中運行以下命令:

$ curl -sSf https://static.rust-lang.org/rustup.sh | sh

一個簡單的方法來安裝測試版二進製的Rust在Linux和Mac上,隻需要在shell中運行這個:

$ curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- --channel=beta

一個簡單的方法來安裝Rust的二進製在Linux和Mac上,隻需要在shell中運行這個命令:

$ curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- --channel=nightly

2、在Windows上安裝Rust:

請訪問以下網址:http://www.rust-lang.org/ ,並下載 rust-1.0.0-x86_64-pc-windows-gnu.msi

安裝過程參考以下:

第一步:


第二步:選擇一個位置


第三步:選擇安裝功能選項


第四步:安裝完成


到這裡整個安裝過程完成!如果有問題可以參考官方的說明。

官方參考:http://www.rust-lang.org/install.html