1. 程式人生 > >Arch linux 安裝Qt5

Arch linux 安裝Qt5

安裝軟體包、文件包:

sudo pacman -S qt5-base qt5-doc

安裝QTCreator

sudo pacman -S qtcreator

測試程式碼 helloworld.cpp:

#include <QApplication>
#include <QLabel>

int main(int argc, char **argv)
{
    QApplication app(argc, argv);
    QLabel hello("Hello world!");

    hello.show();
    return app.exec();
}

命令列編譯:

g++ $(pkg-config --cflags --libs Qt5Widgets) -fPIC -o helloworld helloworld.cpp

報錯:

bash: pkg-config: commond not found

pkg-config 是向用戶向程式提供相應庫的路徑、版本號等資訊的程式。

未安裝就會報上述錯誤

解決:

sudo pacman -S pkgconf

安裝完成之後重新編譯,執行通過。