Установка ubuntustudio-audio, получаю ошибки [duplicate]

На этот вопрос уже есть ответ здесь:

Я получаю эту ошибку, когда пытаюсь установить его:

$ sudo apt-get install ubuntustudio-audio
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
 ubuntustudio-audio : Depends: libavdevice-extra-53 but it is not going to be installed
                      Depends: libavfilter-extra-3 but it is not going to be installed
                      Depends: libavformat-extra-54 but it is not going to be installed
                      Depends: libavutil-extra-52 but it is not going to be installed
                      Depends: libswscale-extra-2 but it is not going to be installed
                      Recommends: ardour3 but it is not going to be installed
                      Recommends: audacity but it is not going to be installed
                      Recommends: idjc but it is not going to be installed
                      Recommends: pd-aubio but it is not going to be installed
                      Recommends: pd-readanysf but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

В верхней части этой страницы - https://wiki.ubuntu.com/UbuntuStudio/PackageList она написано =OUTDATED=. Я не уверен, относится ли это ко всей странице (и почему эта установка не работает) или это относится только к первой странице (ubuntustudio-desktop).

0
задан 31 December 2015 в 11:57

1 ответ

Лучший способ:

sudo add-apt-repository "deb http://security.ubuntu.com/ubuntu trusty-security main universe" && sudo apt-get update

Затем

sudo apt-get install ubuntustudio-audio

Если вышеупомянутое не работает, другой путь состоит в том, чтобы загрузить пакеты вручную и затем установить его оттуда. Сделать так:

mkdir ~/Downloads/ubuntustudio && cd ~/Downloads/ubuntustudio

Загружает следующие пакеты вручную (в то время как все еще в папке ~/Downloads/ubuntustudio):

security.ubuntu.com libavdevice-extra-53

wget -c http://security.ubuntu.com/ubuntu/pool/universe/liba/libav/libavdevice-extra-53_9.18-0ubuntu0.14.04.1_all.deb

security.ubuntu.com libavfilter-extra-3

wget -c http://security.ubuntu.com/ubuntu/pool/universe/liba/libav/libavfilter-extra-3_9.18-0ubuntu0.14.04.1_all.deb

security.ubuntu.com libavformat-extra-54

wget -c http://security.ubuntu.com/ubuntu/pool/universe/liba/libav/libavformat-extra-54_9.18-0ubuntu0.14.04.1_all.deb

security.ubuntu.com libavutil-extra-52

wget -c http://security.ubuntu.com/ubuntu/pool/universe/liba/libav/libavutil-extra-52_9.18-0ubuntu0.14.04.1_all.deb

security.ubuntu.com libswscale-extra-2

wget -c http://security.ubuntu.com/ubuntu/pool/universe/liba/libav/libswscale-extra-2_9.18-0ubuntu0.14.04.1_all.deb

Затем для установки выполненного:

sudo dpkg -i *.deb

И удовлетворить любые зависимости, сделайте:

sudo apt-get -f install
1
ответ дан 26 July 2019 в 10:50

Другие вопросы по тегам:

Похожие вопросы: