Skip to content

Instantly share code, notes, and snippets.

@bedilbek
Last active June 6, 2023 21:14
Show Gist options
  • Select an option

  • Save bedilbek/f3d98bfc6a822c11540572bac78feb93 to your computer and use it in GitHub Desktop.

Select an option

Save bedilbek/f3d98bfc6a822c11540572bac78feb93 to your computer and use it in GitHub Desktop.
Install Qt5 on Ubuntu
### https://wiki.qt.io/Install_Qt_5_on_Ubuntu#Installation_Guide_.28Qt_download_page.29
## if you need to install dependencies uncomment below lines
# 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
wget https://download.qt.io/new_archive/qt/5.7/5.7.0/qt-opensource-linux-x64-5.7.0.run
chmod +x qt-opensource-linux-x64-5.7.0.run
./qt-opensource-linux-x64-5.7.0.run
## if you need to link with cmake from the default installed location:
export Qt5_DIR=${HOME}/Qt5.7.0/5.7/gcc_64/lib/cmake/Qt5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment