Skip to content

Instantly share code, notes, and snippets.

@leknoppix
Last active January 19, 2016 09:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save leknoppix/812febb66887953fbc49 to your computer and use it in GitHub Desktop.
Save leknoppix/812febb66887953fbc49 to your computer and use it in GitHub Desktop.
Installation de zeal sous débian
La première étape consiste à se connecter au site [QT creator](https://www.qt.io/download/) afin de télécharger le projet open source correspondant à votre distribution (32 ou 64bits). Vous pouvez également le télécharger en ligne de commande et le rendre executable et l'exécuter:
wget http://download.qt-project.org/official_releases/online_installers/qt-opensource-linux-x64-online.run
chmod +x qt-opensource-linux-x64-online.run
./ qt-opensource-linux-x64-online.run
Un fenêtre apparaîtra vous indiquant la marche à suivre.
Selectionnez l'emplacement de l'installation /home/lib/qt
Cochez Qt5.3, Tools, Qt extras
Puis validez.
Afin de pouvoir exécuté correctement les commandes Qt, il faut modifier le bashrc de l'utilisateur en cours.
echo "PATH=\$PATH:/home/lib/Qt/Tools/QtCreator/bin:/home/lib/Qt/5.4/gcc_64/bin" >> ~/.bashrc
rm qt-opensource-linux-x64-online.run
reboot
apt-get install g++ libxcb-keysyms1-dev zlib1g-dev libx11-dev libxslt1-dev libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev libgl1-mesa-dev libarchive-dev
git clone https://github.com/jkozera/zeal.git
cd zeal
qmake
make
sudo make install
Pour ouvrir le programme, tapez
zeal
Allez dans options pour récupérer les docs que vous souhaitez.
@BBavouzet
Copy link

Bonjour,
Je pense qu'il y a un problème à la ligne 3 étape 1. Ils ont du changer le lien.
Je pense que lien suivant devrais être bon, il a marché pour moi.
http://download.qt.io/official_releases/online_installers/qt-unified-linux-x64-online.run
Merci pour ce gist, zeal marche chez moi, Debian 8.2 Xfce 4.10.
BBavouzet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment