我使用qt-creator-linux-x86-opensource-2.6.1.bin的下载副本安装了QT-creator
sudo ./qt-creator-linux-x86-opensource-2.6.1.bin 在Ubuntu 11.04中
我尝试在QT-Creator/Build/ QT -versions配置中添加QT版本,但它要求提供一个qmake可执行文件。
我使用以下命令安装它:
sudo apt-get install qt4-devel在/usr/bin/qmake中部署qmake的是哪一个
我在QT-Creator/Build/QT-versions configuration中选择了它作为手动,但Qt-4.7.2 (System) /usr/bin/qmake-qt4出现了QT version is not properly installed, please run make install消息,并且我无法在QT-Creator/Build/Kits配置中使用它。
如何解决Qt-creator在项目创建中使用的问题并配置qmake?
发布于 2015-04-28 20:41:46
这样就不会再显示为未回答:
要安装所有qt-devel库,请使用
sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui发布于 2016-02-04 17:56:27
这解决了我在最近的Ubuntu版本上的问题:
sudo apt-get install qt5-default发布于 2021-01-29 08:04:49
在Linux Mint 18.3 (32位)中,它也解决了这个问题:
sudo apt-get install qt5-default因此,在QtCreator中,Qt5 (5.5.1)作为一个工具包安装就绪。
虽然要安装Qt 5.9.0版本,但我必须显式地从https://download.qt.io/official_releases/qt/5.9/5.9.0/single/下载包(2 Gb未打包)。
然后,我不得不在终端中运行以下命令:
cd /home/username/Downloads/qt-everywhere-opensource-src-5.9.0然后执行以下命令:
./configure然后是这个
makehttps://stackoverflow.com/questions/14581528
复制相似问题