Ubuntu – Package dependencies cannot be resolved Ubuntu 14.04 vlc-audacius

14.04audaciousdependenciespackage-managementvlc

vlc: Depends: vlc-nox (= 2.1.4-0ubuntu14.04.1) but 2.1.4-0ubuntu14.04.1 is to be installed

     Depends: libc6 (>= 2.15) but 2.19-0ubuntu6 is to be installed
     Depends: libfreetype6 (>= 2.2.1) but 2.5.2-1ubuntu2.2 is to be installed
     Depends: libgcc1 (>= 1:4.1.1) but 1:4.9-20140406-0ubuntu1 is to be installed
     Depends: libqtcore4 (>= 4:4.8.0) but 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 is to be installed
     Depends: libqtgui4 (>= 4:4.8.0) but 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 is to be installed
     Depends: libstdc++6 (>= 4.6) but 4.8.2-19ubuntu1 is to be installed
     Depends: zlib1g (>= 1:1.2.3.3) but 1:1.2.8.dfsg-1ubuntu1 is to be installed

The following packages have unmet dependencies:

    audacious: Depends: libaudclient2 (= 3.4.3-1) but 3.4.3-1 is to be installed
           Depends: libaudcore1 (= 3.4.3-1) but 3.4.3-1 is to be installed

Best Answer

The following is the code which I used to install vlc on my ubuntu 14.04:

Removing old vlc and its packages: sudo apt-get purge vlc vlc-nox gstreamer1.0-libav:i386 libavcodec-extra-54:i386 libavformat54:i386 libopus0:i386

Adding architecture: sudo dpkg --add-architecture i386

Then install vlc: sudo apt-get install vlc

Related Question