Detailed tutorial on installing qt5.12.8 and environment configuration on ubuntu18.04

Detailed tutorial on installing qt5.12.8 and environment configuration on ubuntu18.04

insert image description here

After the installation is complete, you can find Qt Creator in your application.

insert image description here

Configuring environment variables

You need to configure the environment variables before you can use the qmake command directly
In Ubuntu, for all users, edit the /etc/profile file

sudo vim /etc/profile

Add at the end (Note: the path here corresponds to the installation path, please check whether yours corresponds)

export PATH="/opt/Qt5.12.8/Tools/QtCreator/bin:$PATH"
export PATH="/opt/Qt5.12.8/5.12.8/gcc_64:$PATH"

After the modification is complete, restart the system or use "source /etc/profile" or ". /etc/profile" to make the modification take effect. The source command is also called the "dot command", which is a dot symbol (.). The source command is usually used to re-execute the initialization file that has just been modified to make it take effect immediately without having to log out and log in again.

Enter qtcreator in the terminal to open Qt Creator directly

qtcreator

3. QT project test

Let's create a new Qt project to test it
File>>New File or Project, select Qt Widgets Application. For testing purposes, you can basically click Next all the way, and you can delete the project later.

insert image description here

The built test project

insert image description here

Add a textBrowser control to mainwindow.ui and write a standard greeting

insert image description here

Run >>>>>>>>>>>>>>>>> Error... As the saying goes, "A journey of a hundred steps begins with the halfway point", it has come to this point, hurry up and find a way to solve it

insert image description here

Found the reason

By default, Qt searches for dynamic link libraries in the /usr/lib/ directory, but many Linux distributions place OpenGL link libraries in other directories. For example, I use CentOS 7, and the OpenGL link library is located in the /usr/lib64/ directory, while for Ubuntu, the OpenGL link library is located in the /usr/lib/i386-linux-gnu/mesa/ directory. As long as we copy libGL.so to the /usr/lib/ directory, or create a link for libGL.so in the /usr/lib/ directory, the problem can be solved. Obviously the second method is better.
In addition, the OpenGL link library that comes with the Linux distribution has a version number added to the suffix, such as libGL.so.1, libGL.so.1.2.0, libGL.so.1.3.1, etc., but the OpenGL link library that Qt looks for during the linking phase does not have a version number.

In summary, we need Create a link for the OpenGL library in the /usr/lib/ directory and remove the version number.

If you don't know the specific path of libGL.so in the current Linux system, you can use the locate libGL command or find /usr -name libGL* command to find it, and then use ln -s to create a link. Follow the method:
#Find the location of libGL

# locate libGL
/usr/lib/x86_64-linux-gnu/libGL.so.1
/usr/lib/x86_64-linux-gnu/libGL.so.1.0.0
/usr/lib/x86_64-linux-gnu/libGLESv2.so.2
/usr/lib/x86_64-linux-gnu/libGLESv2.so.2.0.0
......

#Create a link. There may be multiple versions of libGL.so in the Linux system. Just create a link for any version. Ordinary users do not have permission to create links. Use the root user or sudo command.

#sudo ln -s /usr/lib/x86_64-linux-gnu/libGL.so.1 /usr/lib/libGL.so

Run again>>>>>>>>>>>>>>> Success

insert image description here

Summarize

This is the end of this article about the detailed tutorial on how to install qt5.12.8 and environment configuration on ubuntu18.04. For more information about how to install qt5.12.8 and environment configuration on ubuntu, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed steps for installing, configuring and uninstalling QT5 in Ubuntu 14.04
  • How to install and uninstall pyqt5 in ubuntu
  • How to install Qt5.10 on Ubuntu 18.04

environment

System: Ubuntu 18.04
Software: qt5.12.8

1. Download the installation package

Download address: http://download.qt.io/archive/qt/5.12/5.12.8/

insert image description here

Click the required version (here we choose .run) and you will be redirected to a source selection interface. You can choose one of the three sources in China (CN).

insert image description here

2. Installation

Enter the download folder from the terminal, usually /home/username/Downloads, and you can find the downloaded qt-opensource-linux-x64-5.12.8.run
Grant executable permissions to all users for qt-opensource-linux-x64-5.12.8.run

sudo chmod a+x qt-opensource-linux-x64-5.12.8.run

After you have the permission, you can execute it under this path

./qt-opensource-linux-x64-5.12.8.run

The installation guide window pops up. Fill in the QT Account according to the instructions (I remember that there were previous versions that could be skipped). Click Next all the way. It is not recommended to modify the default path.

insert image description here

Install as needed, and configure enough to select all to save trouble.

<<:  Token verification login in Vue project (front-end part)

>>:  Tutorial on how to connect and use MySQL 8.0 in IDEA's Maven project

Recommend

Significantly optimize the size of PNG images with CSS mask (recommended)

This article is welcome to be shared and aggregat...

Mac installation mysqlclient process analysis

Try installing via pip in a virtual environment: ...

Use of docker system command set

Table of contents docker system df docker system ...

Commands to find domain IP address in Linux terminal (five methods)

This tutorial explains how to verify the IP addre...

WeChat applet + ECharts to achieve dynamic refresh process record

Preface Recently I encountered a requirement, whi...

Node.js uses express-fileupload middleware to upload files

Table of contents Initialize the project Writing ...

JS practical object-oriented snake game example

Table of contents think 1. Greedy Snake Effect Pi...

Detailed explanation of setting Context Path in Web application

URL: http://hostname.com/contextPath/servletPath/...

How to solve the timeout during pip operation in Linux

How to solve the timeout problem when pip is used...

HTML page adaptive width table

In the pages of WEB applications, tables are ofte...

How to upgrade https under Nginx

Purchase Certificate You can purchase it from Ali...

The past two years with user experience

<br />It has been no more than two years sin...

Implementing CommonJS modularity in browsers without compilation/server

Table of contents introduction 1. What is one-cli...

Mysql Chinese sorting rules description

When using MySQL, we often sort and query a field...