VS Code C/C++ 環境配置

Sonui發表於2024-07-17

VS Code C/C++ 環境配置教程

Windows

預備檔案

MinGW-W64

國內下載
國外下載

Visual Studio Code

官網下載

推薦外掛

Code Runner & C/C++

配置編譯器

將MinGW-W64解壓後,複製其路徑,例如解壓到了C盤,路徑為C:\mingw64\

按下 Win+R 輸入 sysdm.cpl 開啟系統屬性視窗,切換到高階選項,點選右下方環境變數

雙擊系統變數中的Path專案

{% asset_img "system env.png" "edit env'edit env'" %}

在彈出的視窗中點選右邊的新建按鈕,貼上之前複製的目錄,後面加上bin,例如C:\mingw64\bin,最終如圖

{% asset_img "edit env ok.png" "edit env ok'edit env ok'" %}

按下 Win+R 輸入 cmd,在 cmd 視窗中輸入 gcc -v 出現關於編譯器相關資訊即可,如果提示找不到可以嘗試重啟電腦後再執行命令

{% asset_img "mingw print.png" "mingw print'mingw print'" %}

安裝VS Code

下載 VSCodeUserSetup-x64.exe 檔案後,雙擊開啟,選擇 我同意此協議

{% asset_img "start install vscode.png" "start install vscode'start install vscode'" %}

根據自己需要勾選,也可以按照圖中所示的勾選

{% asset_img "vscode install config.png" "vscode install config'vscode install config'" %}

將之前下載的 外掛.zip 檔案解壓到桌面,然後啟動VS Code,切到圖中所指標籤

{% asset_img "vscode start window.png" "vscode start window'vscode start window'" %}

然後將之前解壓的三個檔案選中,拖放到圖中畫框區域進行安裝

{% asset_img "vscode plugs window.png" "vscode plugs window'vscode plugs window'" %}

然後點選 檔案首選項設定 找到列表中的 擴充套件 點開,尋找 Run Code config

尋找 Run In Terminal 勾選

最後選擇一個Hello World原始碼檔案右鍵選擇VS Code開啟,點選右上角三角圖示執行,執行如圖所示就說明環境ok可以使用了

{% asset_img "run cpp code.png" "run cpp code'run cpp code'" %}

相關文章