1. 程式人生 > >Windows下的Ubuntu,vscode 開發cpp

Windows下的Ubuntu,vscode 開發cpp

安裝ubuntu

這個簡單,app store有,百度安裝就好

ubuntu中安裝編譯器

  • gcc
    • sudo apt-get update
    • apt-get install gcc
    • gcc --version 測試
  • g++
    • sudo apt install g++
    • apt-get install g++
    • g++ --version 測試
➜  /home cat test.cpp
/*************************************************************************
        >
File Name: test.cpp > Author: > Mail: > Created Time: Sat Nov 10 18:36:34 2018 ************************************************************************/ # include<stdio.h> #include<iostream> using namespace std; int main(){ printf("hello!\n"); return
0; } ➜ /home g++ test.cpp ➜ /home ls a.out test.cpp ➜ /home ./a.out hello!

使用

編輯的時候使用vscode開啟對應檔案即可
編譯的時候使用ubuntu命令列編譯就好

畢竟比較懶,懶得配置vscode