Ubuntu1404下atom配置C++环境

时间:2022-10-25 18:14:58

[本地环境]

操作系统:Ubuntu 14.04 64bits



1. atom 下载地址

下载地址:https://atom.io/

选择版本: Download.deb

打开atom:终端中输入 atom即可,atom界面如下图所示:

Ubuntu1404下atom配置C++环境

Atom的界面如下图所示:

Ubuntu1404下atom配置C++环境

在welcome Guide一栏有“Install a Package”,点击后如下图所示, 选中“Open Installer”:

Ubuntu1404下atom配置C++环境

Ubuntu1404下atom配置C++环境

2. 安装如下三个插件:

  • linter-gcc 
  • linter 
  • gcc-make-run
如下图所示:linter-gcc的安装,点击“Install”即可,linter和gcc-make-run同理 Ubuntu1404下atom配置C++环境

3. 修改linter-gcc路径: 参考上图,点击linter-gcc下“Setting”:确保路径 /usr/bin/g++ Ubuntu1404下atom配置C++环境
往下翻并且勾选“Lint on-the-fly”(表示在编写代码的同时进行编译),如果不勾选此项,只有在文件被保存时才编译代码 ,如下图所示: Ubuntu1404下atom配置C++环境

勾选后的效果如下: Ubuntu1404下atom配置C++环境

安装完成后,按“F6”即可编译并运行程序,写个小程序测试如下。

Ubuntu1404下atom配置C++环境

推荐两个比较装逼的插件,安装和之前的插件安装方式相同: activate-power-mode
效果: Ubuntu1404下atom配置C++环境
minimap 效果: 就是sublime Text相类似的缩略图,图见小程序测试的右上角。
在atom下也可以配置Python等开发环境,感兴趣可以百度以下。