您好,登錄后才能下訂單哦!
本篇內容主要講解“Windows WSL2安裝Rust開發環境的方法步驟”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Windows WSL2安裝Rust開發環境的方法步驟”吧!
這里安裝的是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中,才能執行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
安裝基礎軟件包
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
將下面的內容,放到上方文件中,然后 :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
# 創建一個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” 調出命令,輸入wsl,選擇"Remote-WSL:New Window using Distro...",再選擇"Apline"即可。
打開創建的"first_demo",就可以開始玩耍了。
到此,相信大家對“Windows WSL2安裝Rust開發環境的方法步驟”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。