mint20.1配置vscodeC++环境
时间: 2023-06-13 10:07:38 浏览: 136
SQLiteC++.pdf
以下是在 Linux Mint 20.1 中配置 VS Code C++ 环境的步骤:
1. 安装 Visual Studio Code
在终端中输入以下命令以安装 VS Code:
```
sudo apt update
sudo apt install code
```
2. 安装 C/C++ 扩展
在 VS Code 中打开扩展面板,搜索并安装 C/C++ 扩展。
3. 安装 C++ 编译器
在终端中输入以下命令以安装 g++ 编译器:
```
sudo apt install g++
```
4. 创建 C++ 项目
在 VS Code 中创建一个新的文件夹作为项目文件夹,然后创建一个新的 C++ 文件。在文件中输入以下代码:
```cpp
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!" << endl;
return 0;
}
```
保存文件并将其命名为 main.cpp。
5. 配置任务
在 VS Code 中打开终端,选择“任务”>“配置任务”>“C/C++: g++ build active file”。
在 tasks.json 文件中添加以下配置:
```json
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
```
6. 运行项目
在 VS Code 中按 F5 键运行项目,或者在终端中输入以下命令:
```
./main
```
输出应该是:
```
Hello, World!
```
至此,你已经成功在 Linux Mint 20.1 中配置了 VS Code C++ 环境。
阅读全文