How to install libqt4-core and libqt4-gui on Ubuntu 16.04 LTS?
I upgraded to Ubuntu 16.04 LTS. But the libqt4-core and libqt4-gui packages are missing.
How could I install them on 16.04?
Thanks.
16.04 qt
add a comment |
I upgraded to Ubuntu 16.04 LTS. But the libqt4-core and libqt4-gui packages are missing.
How could I install them on 16.04?
Thanks.
16.04 qt
add a comment |
I upgraded to Ubuntu 16.04 LTS. But the libqt4-core and libqt4-gui packages are missing.
How could I install them on 16.04?
Thanks.
16.04 qt
I upgraded to Ubuntu 16.04 LTS. But the libqt4-core and libqt4-gui packages are missing.
How could I install them on 16.04?
Thanks.
16.04 qt
16.04 qt
edited Sep 23 '17 at 13:20
HEXcube
2,4462125
2,4462125
asked May 2 '16 at 22:13
Enze ChiEnze Chi
3681313
3681313
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
These libqt4-core and libqt4-gui packages don't exist anymore in Ubuntu 16.04 LTS and newer. They were dummy packages with dependencies to other packages. The following procedure will modify the Vidyo package so it uses working dependencies.
First make sure that all required libqt4 packages not installed by default are installed:
sudo apt install libqt4-designer libqt4-opengl libqt4-svg libqtgui4 libqtwebkit4
Create a script to modify the dependency defined in the package. Use the
videbcontrol
script provided here.Run the script
videbcontrol VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.deb
that will open the dependencies in a vi editor
Replace
Depends: libxss1,libaudio2,libasound2,libqt4-gui (>= 4.8.1), libqt4-network
withDepends: libxss1,libaudio2,libasound2,libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4,libqt4-network
. This creates a file namedVidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
containing the new dependency.
If you don't know vi, once you see the package information
- move the cursor using the arrows down to the line starting with
Depends:
- type the letter
i
to get into insert mode - copy past (right click) the new line and type return
- type escape to leave the insert mode
- type
dd
to delete the oldDepends
line - type
ZZ
to save and quit the change (two upper case z)
- move the cursor using the arrows down to the line starting with
Install the Vidyo package by executing the command:
sudo apt install VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
Enjoy
Vidyo = facepalm
– xealits
Mar 6 '18 at 15:52
add a comment |
Thanks to https://ubuntuforums.org/showthread.php?t=110458 and @chmike
These dependencies already have higher versions as I found. It is okay to change the .deb file instead. @bean1975 has a shorter method:
dpkg-deb -x yourfile.deb newdir
dpkg-deb --control yourfile.deb newdir/DEBIAN
gedit newdir/DEBIAN/control
and change the libqt4-gui (>= 4.8.1)
with libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4
dpkg -b newdir modified.deb
and you can use it now!!!
add a comment |
Try this as it worked for me:
sudo apt-get -f install
This was suggested by terminal itself and it did some magic and what not.
add a comment |
I found these instructions from the Vidyo website, the easiest to follow. They have worked consistently across a few upgrades.
add a comment |
Linked on Ubuntu section of Launchpad:
https://launchpad.net/ubuntu/xenial/+package/libqt4-core
https://launchpad.net/ubuntu/xenial/+package/libqt4-gui
You can install a .deb (Debian binary package) using dpkg: sudo dpkg -i libqt4-core_4.8.6...ubuntu8_amd64.deb
Do I have to download the files and dependencies manually? Is it there any PPA to make the install easier?
– Enze Chi
May 6 '16 at 22:55
I go dependency issue when install them:dpkg: dependency problems prevent configuration of libqt4-dbus:amd64: libqt4-dbus:amd64 depends on libqtdbus4 (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of libqtdbus4:amd64 on system is 4:4.8.7+dfsg-5ubuntu2. libqt4-dbus:amd64 depends on qdbus (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of qdbus on system is 4:4.8.7+dfsg-5ubuntu2.
– Enze Chi
May 6 '16 at 22:57
That says your libqtdbus4 package is too new. Do you have another package that broke after the update that depends on libqt4-[core|gui]? For xenial there is a package libtcore4 and linbqtgui4
– neofug
May 8 '16 at 19:27
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f766615%2fhow-to-install-libqt4-core-and-libqt4-gui-on-ubuntu-16-04-lts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
These libqt4-core and libqt4-gui packages don't exist anymore in Ubuntu 16.04 LTS and newer. They were dummy packages with dependencies to other packages. The following procedure will modify the Vidyo package so it uses working dependencies.
First make sure that all required libqt4 packages not installed by default are installed:
sudo apt install libqt4-designer libqt4-opengl libqt4-svg libqtgui4 libqtwebkit4
Create a script to modify the dependency defined in the package. Use the
videbcontrol
script provided here.Run the script
videbcontrol VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.deb
that will open the dependencies in a vi editor
Replace
Depends: libxss1,libaudio2,libasound2,libqt4-gui (>= 4.8.1), libqt4-network
withDepends: libxss1,libaudio2,libasound2,libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4,libqt4-network
. This creates a file namedVidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
containing the new dependency.
If you don't know vi, once you see the package information
- move the cursor using the arrows down to the line starting with
Depends:
- type the letter
i
to get into insert mode - copy past (right click) the new line and type return
- type escape to leave the insert mode
- type
dd
to delete the oldDepends
line - type
ZZ
to save and quit the change (two upper case z)
- move the cursor using the arrows down to the line starting with
Install the Vidyo package by executing the command:
sudo apt install VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
Enjoy
Vidyo = facepalm
– xealits
Mar 6 '18 at 15:52
add a comment |
These libqt4-core and libqt4-gui packages don't exist anymore in Ubuntu 16.04 LTS and newer. They were dummy packages with dependencies to other packages. The following procedure will modify the Vidyo package so it uses working dependencies.
First make sure that all required libqt4 packages not installed by default are installed:
sudo apt install libqt4-designer libqt4-opengl libqt4-svg libqtgui4 libqtwebkit4
Create a script to modify the dependency defined in the package. Use the
videbcontrol
script provided here.Run the script
videbcontrol VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.deb
that will open the dependencies in a vi editor
Replace
Depends: libxss1,libaudio2,libasound2,libqt4-gui (>= 4.8.1), libqt4-network
withDepends: libxss1,libaudio2,libasound2,libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4,libqt4-network
. This creates a file namedVidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
containing the new dependency.
If you don't know vi, once you see the package information
- move the cursor using the arrows down to the line starting with
Depends:
- type the letter
i
to get into insert mode - copy past (right click) the new line and type return
- type escape to leave the insert mode
- type
dd
to delete the oldDepends
line - type
ZZ
to save and quit the change (two upper case z)
- move the cursor using the arrows down to the line starting with
Install the Vidyo package by executing the command:
sudo apt install VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
Enjoy
Vidyo = facepalm
– xealits
Mar 6 '18 at 15:52
add a comment |
These libqt4-core and libqt4-gui packages don't exist anymore in Ubuntu 16.04 LTS and newer. They were dummy packages with dependencies to other packages. The following procedure will modify the Vidyo package so it uses working dependencies.
First make sure that all required libqt4 packages not installed by default are installed:
sudo apt install libqt4-designer libqt4-opengl libqt4-svg libqtgui4 libqtwebkit4
Create a script to modify the dependency defined in the package. Use the
videbcontrol
script provided here.Run the script
videbcontrol VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.deb
that will open the dependencies in a vi editor
Replace
Depends: libxss1,libaudio2,libasound2,libqt4-gui (>= 4.8.1), libqt4-network
withDepends: libxss1,libaudio2,libasound2,libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4,libqt4-network
. This creates a file namedVidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
containing the new dependency.
If you don't know vi, once you see the package information
- move the cursor using the arrows down to the line starting with
Depends:
- type the letter
i
to get into insert mode - copy past (right click) the new line and type return
- type escape to leave the insert mode
- type
dd
to delete the oldDepends
line - type
ZZ
to save and quit the change (two upper case z)
- move the cursor using the arrows down to the line starting with
Install the Vidyo package by executing the command:
sudo apt install VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
Enjoy
These libqt4-core and libqt4-gui packages don't exist anymore in Ubuntu 16.04 LTS and newer. They were dummy packages with dependencies to other packages. The following procedure will modify the Vidyo package so it uses working dependencies.
First make sure that all required libqt4 packages not installed by default are installed:
sudo apt install libqt4-designer libqt4-opengl libqt4-svg libqtgui4 libqtwebkit4
Create a script to modify the dependency defined in the package. Use the
videbcontrol
script provided here.Run the script
videbcontrol VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.deb
that will open the dependencies in a vi editor
Replace
Depends: libxss1,libaudio2,libasound2,libqt4-gui (>= 4.8.1), libqt4-network
withDepends: libxss1,libaudio2,libasound2,libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4,libqt4-network
. This creates a file namedVidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
containing the new dependency.
If you don't know vi, once you see the package information
- move the cursor using the arrows down to the line starting with
Depends:
- type the letter
i
to get into insert mode - copy past (right click) the new line and type return
- type escape to leave the insert mode
- type
dd
to delete the oldDepends
line - type
ZZ
to save and quit the change (two upper case z)
- move the cursor using the arrows down to the line starting with
Install the Vidyo package by executing the command:
sudo apt install VidyoDesktopInstaller-ubuntu64-TAG_VD_3_6_3_017.modified.deb
Enjoy
edited Sep 23 '17 at 15:51
HEXcube
2,4462125
2,4462125
answered Jul 22 '16 at 16:02
chmikechmike
422616
422616
Vidyo = facepalm
– xealits
Mar 6 '18 at 15:52
add a comment |
Vidyo = facepalm
– xealits
Mar 6 '18 at 15:52
Vidyo = facepalm
– xealits
Mar 6 '18 at 15:52
Vidyo = facepalm
– xealits
Mar 6 '18 at 15:52
add a comment |
Thanks to https://ubuntuforums.org/showthread.php?t=110458 and @chmike
These dependencies already have higher versions as I found. It is okay to change the .deb file instead. @bean1975 has a shorter method:
dpkg-deb -x yourfile.deb newdir
dpkg-deb --control yourfile.deb newdir/DEBIAN
gedit newdir/DEBIAN/control
and change the libqt4-gui (>= 4.8.1)
with libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4
dpkg -b newdir modified.deb
and you can use it now!!!
add a comment |
Thanks to https://ubuntuforums.org/showthread.php?t=110458 and @chmike
These dependencies already have higher versions as I found. It is okay to change the .deb file instead. @bean1975 has a shorter method:
dpkg-deb -x yourfile.deb newdir
dpkg-deb --control yourfile.deb newdir/DEBIAN
gedit newdir/DEBIAN/control
and change the libqt4-gui (>= 4.8.1)
with libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4
dpkg -b newdir modified.deb
and you can use it now!!!
add a comment |
Thanks to https://ubuntuforums.org/showthread.php?t=110458 and @chmike
These dependencies already have higher versions as I found. It is okay to change the .deb file instead. @bean1975 has a shorter method:
dpkg-deb -x yourfile.deb newdir
dpkg-deb --control yourfile.deb newdir/DEBIAN
gedit newdir/DEBIAN/control
and change the libqt4-gui (>= 4.8.1)
with libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4
dpkg -b newdir modified.deb
and you can use it now!!!
Thanks to https://ubuntuforums.org/showthread.php?t=110458 and @chmike
These dependencies already have higher versions as I found. It is okay to change the .deb file instead. @bean1975 has a shorter method:
dpkg-deb -x yourfile.deb newdir
dpkg-deb --control yourfile.deb newdir/DEBIAN
gedit newdir/DEBIAN/control
and change the libqt4-gui (>= 4.8.1)
with libqt4-designer,libqt4-opengl,libqt4-svg,libqtgui4,libqtwebkit4
dpkg -b newdir modified.deb
and you can use it now!!!
edited Jul 27 '17 at 15:13
Gus
1524
1524
answered Mar 19 '17 at 15:54
Amartya RejAmartya Rej
363
363
add a comment |
add a comment |
Try this as it worked for me:
sudo apt-get -f install
This was suggested by terminal itself and it did some magic and what not.
add a comment |
Try this as it worked for me:
sudo apt-get -f install
This was suggested by terminal itself and it did some magic and what not.
add a comment |
Try this as it worked for me:
sudo apt-get -f install
This was suggested by terminal itself and it did some magic and what not.
Try this as it worked for me:
sudo apt-get -f install
This was suggested by terminal itself and it did some magic and what not.
edited Jan 20 '17 at 11:11
storm
4,02032335
4,02032335
answered Jan 20 '17 at 9:46
user644585user644585
11
11
add a comment |
add a comment |
I found these instructions from the Vidyo website, the easiest to follow. They have worked consistently across a few upgrades.
add a comment |
I found these instructions from the Vidyo website, the easiest to follow. They have worked consistently across a few upgrades.
add a comment |
I found these instructions from the Vidyo website, the easiest to follow. They have worked consistently across a few upgrades.
I found these instructions from the Vidyo website, the easiest to follow. They have worked consistently across a few upgrades.
answered Feb 1 at 16:43
SteveSongSteveSong
31115
31115
add a comment |
add a comment |
Linked on Ubuntu section of Launchpad:
https://launchpad.net/ubuntu/xenial/+package/libqt4-core
https://launchpad.net/ubuntu/xenial/+package/libqt4-gui
You can install a .deb (Debian binary package) using dpkg: sudo dpkg -i libqt4-core_4.8.6...ubuntu8_amd64.deb
Do I have to download the files and dependencies manually? Is it there any PPA to make the install easier?
– Enze Chi
May 6 '16 at 22:55
I go dependency issue when install them:dpkg: dependency problems prevent configuration of libqt4-dbus:amd64: libqt4-dbus:amd64 depends on libqtdbus4 (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of libqtdbus4:amd64 on system is 4:4.8.7+dfsg-5ubuntu2. libqt4-dbus:amd64 depends on qdbus (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of qdbus on system is 4:4.8.7+dfsg-5ubuntu2.
– Enze Chi
May 6 '16 at 22:57
That says your libqtdbus4 package is too new. Do you have another package that broke after the update that depends on libqt4-[core|gui]? For xenial there is a package libtcore4 and linbqtgui4
– neofug
May 8 '16 at 19:27
add a comment |
Linked on Ubuntu section of Launchpad:
https://launchpad.net/ubuntu/xenial/+package/libqt4-core
https://launchpad.net/ubuntu/xenial/+package/libqt4-gui
You can install a .deb (Debian binary package) using dpkg: sudo dpkg -i libqt4-core_4.8.6...ubuntu8_amd64.deb
Do I have to download the files and dependencies manually? Is it there any PPA to make the install easier?
– Enze Chi
May 6 '16 at 22:55
I go dependency issue when install them:dpkg: dependency problems prevent configuration of libqt4-dbus:amd64: libqt4-dbus:amd64 depends on libqtdbus4 (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of libqtdbus4:amd64 on system is 4:4.8.7+dfsg-5ubuntu2. libqt4-dbus:amd64 depends on qdbus (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of qdbus on system is 4:4.8.7+dfsg-5ubuntu2.
– Enze Chi
May 6 '16 at 22:57
That says your libqtdbus4 package is too new. Do you have another package that broke after the update that depends on libqt4-[core|gui]? For xenial there is a package libtcore4 and linbqtgui4
– neofug
May 8 '16 at 19:27
add a comment |
Linked on Ubuntu section of Launchpad:
https://launchpad.net/ubuntu/xenial/+package/libqt4-core
https://launchpad.net/ubuntu/xenial/+package/libqt4-gui
You can install a .deb (Debian binary package) using dpkg: sudo dpkg -i libqt4-core_4.8.6...ubuntu8_amd64.deb
Linked on Ubuntu section of Launchpad:
https://launchpad.net/ubuntu/xenial/+package/libqt4-core
https://launchpad.net/ubuntu/xenial/+package/libqt4-gui
You can install a .deb (Debian binary package) using dpkg: sudo dpkg -i libqt4-core_4.8.6...ubuntu8_amd64.deb
answered May 2 '16 at 23:22
neofugneofug
48436
48436
Do I have to download the files and dependencies manually? Is it there any PPA to make the install easier?
– Enze Chi
May 6 '16 at 22:55
I go dependency issue when install them:dpkg: dependency problems prevent configuration of libqt4-dbus:amd64: libqt4-dbus:amd64 depends on libqtdbus4 (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of libqtdbus4:amd64 on system is 4:4.8.7+dfsg-5ubuntu2. libqt4-dbus:amd64 depends on qdbus (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of qdbus on system is 4:4.8.7+dfsg-5ubuntu2.
– Enze Chi
May 6 '16 at 22:57
That says your libqtdbus4 package is too new. Do you have another package that broke after the update that depends on libqt4-[core|gui]? For xenial there is a package libtcore4 and linbqtgui4
– neofug
May 8 '16 at 19:27
add a comment |
Do I have to download the files and dependencies manually? Is it there any PPA to make the install easier?
– Enze Chi
May 6 '16 at 22:55
I go dependency issue when install them:dpkg: dependency problems prevent configuration of libqt4-dbus:amd64: libqt4-dbus:amd64 depends on libqtdbus4 (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of libqtdbus4:amd64 on system is 4:4.8.7+dfsg-5ubuntu2. libqt4-dbus:amd64 depends on qdbus (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of qdbus on system is 4:4.8.7+dfsg-5ubuntu2.
– Enze Chi
May 6 '16 at 22:57
That says your libqtdbus4 package is too new. Do you have another package that broke after the update that depends on libqt4-[core|gui]? For xenial there is a package libtcore4 and linbqtgui4
– neofug
May 8 '16 at 19:27
Do I have to download the files and dependencies manually? Is it there any PPA to make the install easier?
– Enze Chi
May 6 '16 at 22:55
Do I have to download the files and dependencies manually? Is it there any PPA to make the install easier?
– Enze Chi
May 6 '16 at 22:55
I go dependency issue when install them:dpkg: dependency problems prevent configuration of libqt4-dbus:amd64: libqt4-dbus:amd64 depends on libqtdbus4 (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of libqtdbus4:amd64 on system is 4:4.8.7+dfsg-5ubuntu2. libqt4-dbus:amd64 depends on qdbus (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of qdbus on system is 4:4.8.7+dfsg-5ubuntu2.
– Enze Chi
May 6 '16 at 22:57
I go dependency issue when install them:dpkg: dependency problems prevent configuration of libqt4-dbus:amd64: libqt4-dbus:amd64 depends on libqtdbus4 (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of libqtdbus4:amd64 on system is 4:4.8.7+dfsg-5ubuntu2. libqt4-dbus:amd64 depends on qdbus (= 4:4.8.6+git64-g5dc8b2b+dfsg-3~ubuntu8); however: Version of qdbus on system is 4:4.8.7+dfsg-5ubuntu2.
– Enze Chi
May 6 '16 at 22:57
That says your libqtdbus4 package is too new. Do you have another package that broke after the update that depends on libqt4-[core|gui]? For xenial there is a package libtcore4 and linbqtgui4
– neofug
May 8 '16 at 19:27
That says your libqtdbus4 package is too new. Do you have another package that broke after the update that depends on libqt4-[core|gui]? For xenial there is a package libtcore4 and linbqtgui4
– neofug
May 8 '16 at 19:27
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f766615%2fhow-to-install-libqt4-core-and-libqt4-gui-on-ubuntu-16-04-lts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown