Install Qt 5 on Ubuntu

来源:互联网 发布:mac桌面没了咋办v 编辑:程序博客网 时间:2024/04/28 17:54

Introduction

This is a tutorial for installation of Qt 5.0.2 to Ubuntu 12.10. It may be used also for newer versions of Qt and Ubuntu. A difference for OpenGL has been found and added as a note below.

Installation Guide

  • Download

Visit Qt downloads page an download a 32-bit or 64-bit Linux installation [qt-project.org] depending your version of Ubuntu. The installation file can be also downloaded through the command line using wget.

Example:

  1. wget http://download.qt-project.org/official_releases/qt/5.0/5.0.2/qt-linux-opensource-5.0.2-x86-offline.run

  • Install

Adjust permission, run the installer and follow the instruction to complete the installation.

  1. chmod +x qt-linux-opensource-5.0.2-x86-offline.run
  2. ./qt-linux-opensource-5.0.2-x86-offline.run

  • Install g++

Open a terminal and execute the following command to install g++:

  1. sudo apt-get install build-essential

  • Configure a compiler

Launch Qt Creator. Go to Tools > Options. Click Build & Run and select tab Kit. Configure a compiler if it is not automatically detected.

  • Install OpenGL libraries

Execute the following command to install OpenGL libraries:

  1. sudo apt-get install mesa-common-dev

Note: Just installing the above-mentioned mesa-common-dev kit is not sufficient for more recent Ubuntu versions. Based on this comment in the forum [qt-project.org] an additional package needs installation. Execute following command:

  1. sudo apt-get install libglu1-mesa-dev -y

Tested with Qt5.3.1 and Ubuntu 14.04 and it solved the problem with missing -lGL.

Troubleshooting

  • Qt Creator needs a compiler set up to build

Follow the instruction from the previous section to configure compiler for Qt Creator.

  • error: g++: Command not found

Solution:

  1. sudo apt-get install build-essential

  • error: GL/gl.h: No such file or directory

Solution:

  1. sudo apt-get install mesa-common-dev

0 0