VS code部署RUST執行環境

2021-10-11 01:49:48 字數 1020 閱讀 8013

1、安裝rust

rust 安裝位址

2、切換到

msvc toolchain by rustup default stable-x86_64-pc-windows-msvc

3、安裝vscode

vs code 安裝位址

在工程目錄下新建.vscode目錄

在新建的 .vscode 資料夾裡新建兩個檔案 tasks.json 和 launch.json,檔案內容如下:

tasks.json 檔案

] 

}

launch.json 檔案(適用在 windows 系統上)

/target/debug/$.exe", 

"args": ,

"stopatentry": false,

"cwd": "$",

"environment": ,

"externalconsole": false

}, /target/debug/$.exe",

"args": ,

"stopatentry": false,

"cwd": "$",

"environment": ,

"externalconsole": false,

"mimode": "gdb",

"midebuggerpath": "這裡填gdb所在的目錄",

"setupcommands": [

] } ] }

配置成功!!!!

Vs Code 配置rust環境

安裝rust 開啟rustup init.exe 安裝有2種選擇,gnu或者msvc工具鏈 已經安裝了visual studio的選擇msvc,已經有mingw w64或者msys2,或者不想占用太多空間的使用gnu。自定義rust安裝配置 msvc依次輸入 安裝標準庫原始碼 rustup comp...

VS Code 搭建 Rust 開發環境

一路單擊到底就安裝好了。開啟 vs code 找到外掛程式工具欄 單擊開啟並在搜尋欄輸入 rust 搜尋 rust 外掛程式 上面你看到的是我的電腦已經安裝過了,第一次安裝點選右邊的 install 安裝。然後編譯並執行檢視輸出結果。開啟 vs code 的控制台 工具欄找到 terminal ne...

VSCode 中Python Github環境搭建

1.每個.py檔案中都可以單獨指定python版本,方法是在前面加上 usr local bin python3.7 2.mac一般預設python2,在python3中安裝requests庫,方法為 pip3 install requests 安裝python3後會預設安裝好pip3,所以直接執行...