Skip to content

Instantly share code, notes, and snippets.

@UbuntuEvangelist
Last active January 16, 2019 17:41
Show Gist options
  • Save UbuntuEvangelist/2a09889ce60206e9cc8aeed068e2fe6e to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/2a09889ce60206e9cc8aeed068e2fe6e to your computer and use it in GitHub Desktop.
Install qt 5.12 into Ubuntu 18.10 Box
#!/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