web-dev-qa-db-ja.com

壊れたパッケージのPyQtパッケージを修正するにはどうすればよいですか?

PyQtをインストールしようとしていますが、いくつかの問題に直面しました(つまり、更新されないパッケージなど)。私はUbuntuにはあまり慣れていないので、いくつかの助けが必要です。これは私が端末から取得した出力です:

Sudo apt-get install python-qt4
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:
 python-qt4 : Depends: libqt4-declarative (>= 4:4.7.0~rc1) but it is not going to be installed
              Depends: libqt4-designer (>= 4:4.7.0) but it is not going to be installed
              Depends: libqt4-help (>= 4:4.7.0) but it is not going to be installed
              Depends: libqt4-script (>= 4:4.7.0) but it is not going to be installed
              Depends: libqt4-scripttools (>= 4:4.7.0) but it is not going to be installed
              Depends: libqt4-svg (>= 4:4.7.0) but it is not going to be installed
              Depends: libqt4-test (>= 4:4.7.0) but it is not going to be installed
              Depends: libqt4-xmlpatterns (>= 4:4.7.0) but it is not going to be installed
E: Broken packages
2
Jorge Guberte

Libqt4 *パッケージがリポジトリーに見つからないため、python-qt4はインストールできません。
私の推測では、正規リポジトリの1つが不足しているため、Software Sourcesを起動し、buntu Softwareタブで、次のように設定されていることを確認してください。 :

enter image description here

設定を変更したら、必ずSudo apt-get update。これで、インストールを再試行する準備ができました。

1
yossile

私は使用するとかなり確信しています

Sudo apt-get update

その後

Sudo apt-get install -f

トリックを行います。

0
Ntc

リポジトリを更新しましたか?そうでない場合は、次を試してください:Sudo apt-get updateをクリックしてから、もう一度インストールしてください。

システムに壊れたパッケージの問題がある場合は、次のコマンドを試すこともできます:Sudo apt-get check

0
Abhijeet