您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Windows WSL2安裝Rust開發(fā)環(huán)境的方法步驟”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Windows WSL2安裝Rust開發(fā)環(huán)境的方法步驟”吧!
這里安裝的是Alpine Linux,體積小,消耗資源少。
安裝Apline WSL
https://www.microsoft.com/en-us/p/alpine-wsl/9p804crf0395#activetab=pivot:overviewtab
安裝與配置:sudo命令
# 登錄root su # 安裝sudo apk add sudo # 將用戶名添加到wheel中,才能執(zhí)行sudo addgroup [username] wheel # 去除sudo時,輸入密碼 visudo # 找到行"# %wheel ALL=(ALL) NOPASSWD: ALL"去掉'#'號取消注釋,:wq保存。
添加阿里云Apline源,加速軟件安裝
sudo sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
安裝基礎(chǔ)軟件包
sudo apk add bash wget curl git vim tar gzip build-base
1. 加速Rust安裝
export RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static export RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup
2. 安裝Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
3. 配置cargo阿里云源, 加速cargo install
vim ~/.cargo/config
將下面的內(nèi)容,放到上方文件中,然后 :wq
[source.crates-io] registry = "https://github.com/rust-lang/crates.io-index" replace-with = "rustcc" [source.rustcc] registry = "https://code.aliyun.com/rustcc/crates.io-index.git"
檢查版本:
rustc -V # 輸出:rustc 1.51.0 (2fd73fabe 2021-03-23) cargo -V # 輸出: cargo 1.51.0 (43b129a20 2021-03-16)
2. 檢查是否正常build
# 創(chuàng)建一個demo項目 cargo new first_demo cd first_demo cargo build ## 輸出: Compiling first_demo v0.1.0 (/home/xxx/workspace/vscode/demo/first_demo) ## Finished dev [unoptimized + debuginfo] target(s) in 0.78s cargo run ## 輸出: Finished dev [unoptimized + debuginfo] target(s) in 0.00s ## Running `target/debug/first_demo` ## Hello, world!
windows中安裝vscode:
https://code.visualstudio.com/download
打開VSCode, 安裝 Remote - WSL 與 Rust 兩款插件.
“ctrl + shift + p” 調(diào)出命令,輸入wsl,選擇"Remote-WSL:New Window using Distro...",再選擇"Apline"即可。
打開創(chuàng)建的"first_demo",就可以開始玩耍了。
到此,相信大家對“Windows WSL2安裝Rust開發(fā)環(huán)境的方法步驟”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。