# 确认ubuntu 18.04
uname -a
# 添加root帐户密码:
sudo passwd root
第一步:配置C++编译环境
# 安装gcc 和 g++
gcc -v
g++ -v
sudo apt install gcc
sudo apt install g++
先写一个helloworld.cpp,
#include <iostream>
int main()
{
printf("Hello World\n");
return 0;
}
手工编译能编译通过。
# 编译
g++ hello.cpp -o hello
# 运行
./helloworld
第二步:安装VSCode及插件
VSCode IDE:官网下载安装即可
启动VSCode,先把VSCode环境改为中文,在扩展中搜索chinese,安装重启VSCode即可。
进行必要的设置(settings.json直接添加):
{
"files.autoGuessEncoding": true,// 自动识别字符编码
"editor.renderControlCharacters": true, // 显示空格符
"editor.renderWhitespace": "all",
"editor.fontSize": 15,//