How to Install Qt SDK on Ubuntu Linux
Method 1 of 2:
Qt SDK 4.8 Installation Instructions:
- First determine your Ubuntu Linux operating system bit version by opening up a terminal and typing the following below and download the matching Qt SDK bit version for your operating system. For example, if you are on 32-bit Ubuntu Linux then download 32-bit Qt SDK, if you are on 64-bit Ubuntu Linux then download 64-bit Qt SDK.
- Type/Copy/Paste: file /sbin/init
- Note the bit version of your Ubuntu Linux operating system architecture it will display whether it is 32-bit or 64-bit.
- Next download the Qt Software Development Kit (SDK) Download Qt SDK
- Select your Ubuntu Linux system architecture such as 32-bit or 64-bit version of the Qt SDK. Also you can add development libraries so that you are able to run Qt applications without complications by following these steps.
- Note: When it comes to downloading the SDK, download the offline installation due to the fact it takes a long time to download unless you have a really fast download connection.
- You have two methods when it comes to downloading the Qt SDK the online installer method or the offline installer method. I prefer to just download the full SDK using the offline method. Because the classes that make up Qt SDK are so large it takes several hours on a slow connection to download the SDK. This may or may not be a turn off for some users who want to try out the Qt SDK.
- Suggestion: I would strongly recommend using the offline installer instead of the online installer unless you have a really fast connection.
- Open up a terminal and enter the following commands below:
- Type/Copy/Paste: sudo apt-get install synaptic
- Type/Copy/Paste: sudo apt-get update
- This command is used to update and to resynchronize the package index files from their sources via the Internet.
- Type/Copy/Paste: sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui
- This command adds additional Qt development libraries to your Ubuntu Linux system allowing Qt programs to run smoothly on your system.
- Type/Copy/Paste: cd /home/"your_user_name"/Downloads
- This will change you into the Downloads directory on your system
- Type/Copy/Paste: sudo -s chmod u+x QtSdk-offline-linux-x86_64-v1.2.1.run
- This will make the Qt SDK executable for all users on your system
- Install the Qt SDK by issuing the following command
- Type/Copy/Paste: sudo -s ./QtSdk-offline-linux-x86_64-v1.2.1.run -style cleanlooks
- You must have superuser privileges to install the Qt SDK
- When you install the Qt SDK you will prompted to select a directory where you want the Qt SDK to reside. Select /opt and your Qt SDK will install into a directory called /opt/QtSDK
- Change the permissions on the Qt SDK directory location to be available by all users by issuing the following command
- Type/Copy/Paste: sudo -s chmod -R 777 /opt/QtSDK
- This will make the Qt SDK executable for all users on your system
- Type/Copy/Paste: sudo -s chmod -R 777 /home/"your_user_name"/.config/Nokia
- This will prevent error messages when you start QtCreator, stating it can not write to the /home/"your_user_name"/.config/Nokia directory.
- Once the Qt program is installed, open up a terminal and use a text editor such as nano or gedit to edit your /etc/profile.
- Type/Copy/Paste: sudo -s nano /etc/profile
- or
- Type/Copy/Paste: sudo -s gedit /etc/profile
- Scroll down to the end of the /etc/profile file and enter the following text below. You want to add this line below to your /etc/profile system wide file so that you will have the option to compile Qt programs from the terminal line.
- Type/Copy/Paste:
- PATH=/opt/QtSDK/Desktop/Qt/4.8.1/gcc/bin:$PATH
- export PATH
- The above number highlighted in bold denotes the version number of the Qt SDK so make sure you enter the correct version number of the Qt SDK. The Qt SDK is always improving with new version changes. So make sure you are mindful of your Qt SDK version number.
- For example, we are using Qt version 4.8.1 in this example, therefore the version number in the /etc/profile would reflect as 4.8.1.
- Save the /etc/profile file and exit
- Reload the /etc/profile file by issuing the following command
- Type/Copy/Paste: . /etc/profile
- Make sure you enter a . and then a space in order to reload your /etc/profile file
- Once the /etc/profile file is reloaded issue the following command you can type the following commands to make sure your Ubuntu Linux system recognizes that the Qt SDK has been accepted by the system PATH.
- Type/Copy/Paste: which qmake
- You should receive a response such as the one below
- /opt/QtSDK/Desktop/Qt/4.8.1/gcc/bin/qmake
- Also type the following command below:
- Type/Copy/Paste: qmake -version
- You should receive a response similar to this:
- 'QMake version 2.01a
- 'Using Qt version 4.8.1 in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib
- This lets you know that you are able to compile Qt programs from the command line. Now you are all set to compile Qt programs on your Ubuntu Linux system. Once the Qt SDK is successfully installed on your system you might want to try compiling your first Qt program see this document for more information How to Create Your First Qt Program on Ubuntu Linux.
Method 2 of 2:
Qt SDK 5.0 Installation Instructions:
- First determine your Ubuntu Linux operating system bit version by opening up a terminal and typing the following below and download the matching Qt SDK bit version for your operating system. For example, if you are on 32-bit Ubuntu Linux then download 32-bit Qt SDK, if you are on 64-bit Ubuntu Linux then download 64-bit Qt SDK.
- Type/Copy/Paste: file /sbin/init
- Note the bit version of your Ubuntu Linux operating system architecture it will display whether it is 32-bit or 64-bit.
- Next download the Qt Software Development Kit (SDK) Download Qt SDK
- Select your Ubuntu Linux system architecture such as 32-bit or 64-bit version of the Qt SDK. Also you can add development libraries so that you are able to run Qt applications without complications by following these steps.
- Note: When it comes to downloading the SDK, download the offline installation due to the fact it takes a long time to download unless you have a really fast download connection.
- You have two methods when it comes to downloading the Qt SDK the online installer method or the offline installer method. I prefer to just download the full SDK using the offline method. Because the classes that make up Qt SDK are so large it takes several hours on a slow connection to download the SDK. This may or may not be a turn off for some users who want to try out the Qt SDK.
- Suggestion: I would strongly recommend using the offline installer instead of the online installer unless you have a really fast connection.
- Open up a terminal and enter the following commands below:
- Type/Copy/Paste: sudo apt-get install synaptic
- Type/Copy/Paste: sudo apt-get update
- This command is used to update and to resynchronize the package index files from their sources via the Internet.
- Type/Copy/Paste: sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui
- This command adds additional Qt development libraries to your Ubuntu Linux system allowing Qt programs to run smoothly on your system. I included this information just in case you want to have Qt SDK 4.8 compatible libraries installed
- Type/Copy/Paste: sudo apt-get install build-essential
- this will add additional C/C++ libraries for compilation
- Type/Copy/Paste: sudo apt-get install "^libxcb.*" libx11-xcb-dev libglu1-mesa-dev libxrender-dev
- this will add OpenGL functionality when running your Qt applications
- Type/Copy/Paste: cd /home/"your_user_name"/Downloads
- This will change you into the Downloads directory on your system
- Type/Copy/Paste: sudo -s chmod u+x qt-linux-opensource-5.0.2-x86_64-offline.run
- This will make the Qt SDK executable for all users on your system
- Install the Qt SDK by issuing the following command
- Type/Copy/Paste: sudo -s ./qt-linux-opensource-5.0.2-x86_64-offline.run -style cleanlooks
- You must have superuser privileges to install the Qt SDK
- When you install the Qt SDK you will prompted to select a directory where you want the Qt SDK to reside. Select /opt and your Qt SDK will install into a directory called /opt/QtSDK
- Change the permissions on the Qt SDK directory location to be available by all users by issuing the following command
- Type/Copy/Paste: sudo -s chmod -R 777 /opt/Qt5.0.2
- This will make the Qt SDK executable for all users on your system
- Type/Copy/Paste: sudo -s chmod -R 777 /home/"your_user_name"/.config/QtProject
- This will prevent error messages when you start QtCreator, stating it can not write to the /home/"your_user_name"/.config/QtProject directory.
- Once the Qt program is installed, open up a terminal and use a text editor such as nano or gedit to edit your /etc/profile.
- Type/Copy/Paste: sudo -s nano /etc/profile
- or
- Type/Copy/Paste: sudo -s gedit /etc/profile
- Scroll down to the end of the /etc/profile file and enter the following text below. You want to add this line below to your /etc/profile system wide file so that you will have the option to compile Qt programs from the terminal line.
- Type/Copy/Paste:
- PATH=/opt/Qt5.0.2/5.0.2/gcc/bin:$PATH
- export PATH
- The above number highlighted in bold denotes the version number of the Qt SDK so make sure you enter the correct version number of the Qt SDK. The Qt SDK is always improving with new version changes. So make sure you are mindful of your Qt SDK version number.
- For example, we are using Qt version 5.0.2 in this example, therefore the version number in the /etc/profile would reflect as 5.0.2
- Save the /etc/profile file and exit
- Reload the /etc/profile file by issuing the following command
- Type/Copy/Paste: . /etc/profile
- Make sure you enter a . and then a space in order to reload your /etc/profile file
- Once the /etc/profile file is reloaded issue the following command you can type the following commands to make sure your Ubuntu Linux system recognizes that the Qt SDK has been accepted by the system PATH.
- Type/Copy/Paste: which qmake
- You should receive a response such as the one below
- /opt/Qt5.0.2/5.0.2/gcc/bin/qmake
- Also type the following command below:
- Type/Copy/Paste: qmake -version
- You should receive a response similar to this:
- QMake version 3.0
- Using Qt version 5.0.2 in /opt/Qt5.0.2/5.0.2/gcc/lib
- This lets you know that you are able to compile Qt SDK 5.0 programs from the command line. Now you are all set to compile Qt programs on your Ubuntu Linux system. Once the Qt SDK is successfully installed on your system you might want to try compiling your first Qt program see this document for more information How to Create Your First Qt Program on Ubuntu Linux.
3.8 ★ | 8 Vote
You should read it
- How to Copy and Paste on Mac
- How to Copy and Paste in Minecraft
- How to Copy and Paste on a Mac
- 13 Ways to Fix Cannot Copy/Paste Error in Windows 10, 8.1, 7
- 5 ways to fix computer errors that cannot Copy Paste
- How to extend Clipboard on Chrome with Multi Copy Paste
- How to Copy‐Paste Using Keyboard Shortcuts
- Fix error of Copy Paste command not working in Word, Excel (2007, 2010)
May be interested
- How to install VPN on Ubuntuencryption of internet use on linux makes a lot of sense. in today's article, tipsmake.com will read with you how to install a vpn on ubuntu, the most popular linux distribution.
- 8 ways Ubuntu changes and improves Linuxubuntu is the most prominent linux distribution in the world. ubuntu and its developer, canonical, have been plagued by a lot of fuss over the years, but the linux world is getting much better thanks to both.
- How to install GIMP on Ubuntu 18.04currently, gimp version 2.10.18.1 has been released and is available to install on ubuntu, linux, and we all know gimp is one of the famous free, cross-platform, open source photo editing software. first, in this article, thuthuat.taimienphi.vn will guide you how to install gimp on ubuntu 18.04.
- Instructions for installing VLC 1.1 from Git in Ubuntu Linuxwith many improvements in version 1.1, many ubuntu users are quite eager to become the first to enjoy vlc's gadgets.
- Tips and tricks after installing Ubuntuubuntu is one of the completely free open source operating systems. this is a distribution (distro) of linux with the second highest amount of traffic after linux mint.
- How to Install Ubuntu Linux Without CD (Windows)want to install ubuntu on your windows computer, but don't have a dvd or cd drive? there are a couple of different ways that you can install ubuntu on computers that don't have disc drives. the most common way is to create a bootable usb...
- How to install GNOME on Ubuntu 20.04 LTS Focal Fossagnome, gnu network object model environment is a graphical user interface (gui) in linux and especially in the ubuntu operating system. it includes many desktop applications and its purpose is to make the linux system easy to use for non-programmers.
- How to Install Ubuntu Linuxthis wikihow teaches you how to install ubuntu linux on your windows or mac computer without erasing your current operating system. make sure that your computer can run linux. your computer must meet the following system...
- How to install Hyper Terminal in Ubuntu 20.04hyper is an open source application supported on all three major platforms: windows, linux, and macos. in this tutorial, tipsmake.com will explain how to install hyper terminal in ubuntu system.
- How to install Skye on Ubuntuthere are actually several ways to install skype on linux. this article will show you how to install skype on ubuntu using the snap package or download directly from the microsoft website.