Last active
January 16, 2019 17:41
-
-
Save UbuntuEvangelist/2a09889ce60206e9cc8aeed068e2fe6e to your computer and use it in GitHub Desktop.
Install qt 5.12 into Ubuntu 18.10 Box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # this script will install qt 5.12 into Ubuntu 18.10 Box | |
| # http://download.qt.io/official_releases/qt/5.12/5.12.0/ | |
| # https://wiki.qt.io/Install_Qt_5_on_Ubuntu | |
| sudo wget http://download.qt.io/official_releases/qt/5.12/5.12.0/qt-opensource-linux-x64-5.12.0.run | |
| sudo chmod +x qt-opensource-linux-x64-5.12.0.run | |
| ./qt-opensource-linux-x64-5.12.0.run | |
| sudo apt-get install build-essential | |
| sudo apt-get install libfontconfig1 | |
| sudo apt-get install mesa-common-dev | |
| sudo apt-get install libglu1-mesa-dev -y | |
| qtdiag | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment