我使用
从已下载的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版本配置中添加QT版本,并要求提供qmake可执行文件。
我用以下方法安装了它:
sudo apt-get install qt4-devel
在/usr/bin/qmake
我在QT-Creator / Build / QT版本配置中选择它作为手动,Qt-4.7.2 (System) /usr/bin/qmake-qt4
但是QT version is not properly installed, please run make install
消息apears并且不能在QT-Creator / Build / Kits配置中使用它。< / p>
如何解决Qt-creator在项目创建中使用configure qmake的问题?
答案 0 :(得分:19)
这解决了我最近的Ubuntu版本的问题:
sudo apt-get install qt5-default
答案 1 :(得分:3)
不再表现为无人接听:
使用
安装所有qt-devel库的解算器sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui
答案 2 :(得分:0)
在 Linux Mint 18.3(32 位)中也解决了这个问题:
sudo apt-get install qt5-default
这样 Qt5 (5.5.1) 就可以作为套件安装在 QtCreator 中随时可用。
虽然要安装 Qt 5.9.0 版本,我必须明确地从 https://download.qt.io/official_releases/qt/5.9/5.9.0/single/(2 Gb unpacked)下载包。
然后我不得不在终端中运行这个命令:
cd /home/username/Downloads/qt-everywhere-opensource-src-5.9.0
然后这个命令:
./configure
那么这个
make
答案 3 :(得分:0)
即使在 sudo apt-get install qt5-default
(它已经安装)之后我也遇到了这个问题。
但是我指出的 QMake 版本在 Linux Processor SDK (02.00.02.11)
我通过在运行 qtcreator 之前获取环境设置来修复它。以下 shell 脚本为我完成了:
source /opt/ti/processor-sdk-linux-am335x-evm-02.00.02.11/linux-devkit/environment-setup
# substitute the location where the SDK is installed.
~/Qt5.9.0/Tools/QtCreator/bin/qtcreator -block
# substitute the location where QTCreator is installed