提示信息

在Ubuntu系统中安装VS Code并配置C++环境的步骤

韦春辉 已关注

在Ubuntu系统中安装VS Code并配置C++环境的步骤如下:

安装VS Code

  1. 更新系统包资源

    1. sudo apt update
  2. 安装必要的依赖

    1. sudo apt install software-properties-common apt-transport-https wget
  3. 下载并添加Microsoft GPG密钥

    1. wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
  4. 启用VS Code的存储库

    1. sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
  5. 安装VS Code

    1. sudo apt update
    2. sudo apt install code

配置C++环境

  1. 安装g++编译器

    1. sudo apt install build-essential
  2. 安装C++扩展

    • 打开VS Code。
    • 点击左侧活动栏中的扩展(四个方块图标)。
    • 搜索并安装“C/C++”扩展,由Microsoft提供。
  3. 配置VS Code的C++环境

    • 在你的项目目录中创建一个文件夹,例如hello-world
    • hello-world文件夹中创建一个名为hello.cpp的文件,并输入简单的C++代码,例如:

      1. #include <iostream>
      2. int main() {
      3. std::cout << "Hello, World!" << std::endl;
      4. return 0;
      5. }
    • 创建一个文件夹.vscode,在其中创建以下配置文件:

      • tasks.json: 配置编译任务
      1. {
      2. "version": "2.0.0",
      3. "tasks": [
      4. {
      5. "label": "build",
      6. "type": "shell",
      7. "command": "g++",
      8. "args": [
      9. "-g",
      10. "${file}",
      11. "-o",
      12. "${fileDirname}/${fileBasenameNoExtension}"
      13. ],
      14. "group": {
      15. "kind": "build",
      16. "isDefault": true
      17. },
      18. "problemMatcher": ["$gcc"]
      19. }
      20. ]
      21. }
      • launch.json: 配置调试环境
      1. {
      2. "version": "0.2.0",
      3. "configurations": [
      4. {
      5. "name": "C++ Launch",
      6. "type": "cppdbg",
      7. "request": "launch",
      8. "program": "${workspaceFolder}/${fileBasenameNoExtension}",
      9. "args": [],
      10. "stopAtEntry": false,
      11. "cwd": "${fileDirname}",
      12. "environment": [],
      13. "externalConsole": false,
      14. "MIMode": "gdb",
      15. "setupCommands": [
      16. {
      17. "description": "Enable pretty-printing for gdb",
      18. "text": "-enable-pretty-printing",
      19. "ignoreFailures": true
      20. }
      21. ],
      22. "preLaunchTask": "build",
      23. "miDebuggerPath": "/usr/bin/gdb",
      24. "setupCommands": [
      25. {
      26. "description": "Enable pretty-printing for gdb",
      27. "text": "-enable-pretty-printing",
      28. "ignoreFailures": true
      29. }
      30. ],
      31. "miDebuggerArgs": "",
      32. "stopAtConnect": false
      33. }
      34. ]
      35. }
  4. 运行和调试代码

    • 打开hello.cpp文件。
    • Ctrl + Shift + B编译代码。
    • 使用调试视图(左侧活动栏中的小虫子图标),并点击“启动调试”按钮(或按F5)开始调试程序。

完成这些步骤后,你将在Ubuntu下成功安装并配置好VS Code的C++开发环境。

    遇到难题? "AI大模型GPT4.0、GPT" 是你的私人解答专家! 点击按钮去提问......
韦春辉 关注 已关注

最近一次登录:2024-11-20 14:10:07   

暂时还没有签名,请关注我或评论我的文章
×
免费图表工具,画流程图、架构图