在 Linux 上安装 C++ 需要先安装编译器和相关的库
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install g++
安装其他常用的 C++ 库,例如 Qt、Boost 等。这里以安装 Qt 为例:
a. 下载 Qt 库:
wget https://download.qt.io/official_releases/qt/5.15/single/qt-5.15.2-gcc_64-Linux-x86_64.tar.xz
b. 解压下载的文件:
tar -xf qt-5.15.2-gcc_64-Linux-x86_64.tar.xz
c. 将解压后的文件夹移动到合适的目录,例如 /opt
:
sudo mkdir /opt/qt
sudo mv qt-5.15.2-gcc_64-Linux-x86_64 /opt/qt/
d. 配置环境变量,将 Qt 的 bin 目录添加到 PATH 变量中:
echo 'export PATH=/opt/qt/5.15.2/gcc_64/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
编写一个简单的 C++ 程序来测试环境是否配置成功:
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
g++ -o hello hello.cpp
./hello
如果程序成功运行并输出 “Hello, World!”,那么说明 C++ 环境已经配置成功。