今日、10.10(Maverick)からアップグレードしたDell T410サーバーでUbuntu 14.04.3 LTSを実行しています。ほとんどの場合、アップグレードはうまくいきましたが、apt-get upgrade
を使用するのに多少苦労しています。ここに私が得ている正確なエラーがあります:
tom@smckay1:~$ Sudo apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
gconf2 : Depends: python:any
python-httplib2 : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-lazr.restfulclient : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-lazr.uri : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-pyatspi : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
Depends: python-gi (>= 2.90.1)
Depends: gir1.2-atspi-2.0 (>= 2.9.90) but it is not installed
Depends: libatk-adaptor but it is not installed
python-simplejson : Depends: python (>= 2.7~) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.5-5~)
python-twisted-bin : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
python-twisted-core : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-twisted-names : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-zope.interface : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
E: Unmet dependencies. Try using -f.
apt-get install -f
、apt-get clean
、apt-get autoremove
、およびその他の同様の手段の複数の実装を試しました。ただし、同じエラーが引き続き発生するため、新しいパッケージをインストールできません。
コメントを削除した/etc/apt/sources.list
のコピーです。 OSを10.10から14.04にアップグレードしたときに、アップグレード前にこのファイルを編集して、「明快」ではなく「信頼」を含めたことを認めます。
#deb cdrom:[Ubuntu 10.10 _Maverick Meerkat_ - Release AMD64 (20101007.1)]/ trusty main restricted
deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb http://extras.ubuntu.com/ubuntu trusty main
deb-src http://extras.ubuntu.com/ubuntu trusty main
deb http://security.ubuntu.com/ubuntu trusty-security main restricted
deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted
deb http://security.ubuntu.com/ubuntu trusty-security universe
deb-src http://security.ubuntu.com/ubuntu trusty-security universe
deb http://security.ubuntu.com/ubuntu trusty-security multiverse
deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse
deb http://us.archive.ubuntu.com/ubuntu/ trusty main
deb http://security.ubuntu.com/ubuntu/ trusty-security main
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main
deb http://us.archive.ubuntu.com/ubuntu/ trusty-proposed main
apt-cache policy python
の出力は次のとおりです。
$ apt-cache policy python
python:
Installed: 2.6.6-2ubuntu2
Candidate: 2.7.5-5ubuntu3
Version table:
2.7.5-5ubuntu3 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages
*** 2.6.6-2ubuntu2 0
100 /var/lib/dpkg/status
これらのコマンドを使用して、Python 2.7.9をインストールしました。
cd ~/Downloads/
wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz
tar -xvf Python-2.7.9.tgz
cd Python-2.7.9
./configure
make
Sudo make install
現在、python -V
はバージョン2.7.9
がインストールされていることを示していますが、apt-get
には表示されません。関連するメモで、アップグレード中にdo-release-upgrade
コマンドを実行しているときに、次のエラーが発生しました。
Traceback (most recent call last):
File "/usr/bin/do-release-upgrade", line 10, in <module>
from UpdateManager.Core.DistUpgradeFetcherCore import DistUpgradeFetcherCore
File "/usr/lib/python2.6/dist-packages/UpdateManager /Core/DistUpgradeFetcherCore.py", line 34, in <module>
import GnuPGInterface
ImportError: No module named GnuPGInterface
Error in sys.excepthook:
Traceback (most recent call last):
File "/usr/lib/python2.6/dist-packages/apport_python_hook.py", line 105, in apport_excepthook
os.O_WRONLY|os.O_CREAT|os.O_EXCL, 0600), 'w')
OSError: [Errno 2] No such file or directory: '/var/crash/_usr_bin_do- release-upgrade.1001.crash'
元の例外は:
Traceback (most recent call last):
File "/usr/bin/do-release-upgrade", line 10, in <module>
from UpdateManager.Core.DistUpgradeFetcherCore import DistUpgradeFetcherCore
File "/usr/lib/python2.6/dist-packages/UpdateManager/Core/DistUpgradeFetcherCore.py", line 34, in <module>
import GnuPGInterface
ImportError: No module named GnuPGInterface
しかし、Sudo apt-get update
とアップグレードにより、最終的にUbuntu 14.04が何らかの形で残されました。
誰もこれを解決するために何をすべきか知っていますか?本当にありがとうございます。
Sudo apt-get install -f
からの出力:
tom@smckay1:~$ Sudo apt-get install -f
[Sudo] password for tom:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... failed.
The following packages have unmet dependencies:
gconf2 : Depends: python:any
python-httplib2 : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-lazr.restfulclient : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-lazr.uri : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-pyatspi : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
Depends: python-gi (>= 2.90.1)
Depends: gir1.2-atspi-2.0 (>= 2.9.90) but it is not installed
Depends: libatk-adaptor but it is not installed
python-simplejson : Depends: python (>= 2.7~) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.5-5~)
python-twisted-bin : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
python-twisted-core : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-twisted-names : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-zope.interface : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is installed
Depends: python:any (>= 2.7.1-0ubuntu2)
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
E: Unable to correct dependencies
Sudo apt-get install -f python
の出力:
tom@smckay1:~$ Sudo apt-get install -f python
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
command-not-found : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
computer-janitor : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
computer-janitor-gtk : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
hplip : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
Recommends: sane-utils but it is not going to be installed
jockey-common : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
language-selector-common : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
lsb-release : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
nvidia-common : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python : Depends: python2.7 (>= 2.7.5-1~) but it is not going to be installed
Depends: python-minimal (= 2.7.5-5ubuntu3) but 2.6.6-2ubuntu2 is to be installed
Depends: libpython-stdlib (= 2.7.5-5ubuntu3) but it is not going to be installed
python-appindicator : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-apport : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-apt : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-aptdaemon : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
Recommends: aptdaemon but it is not going to be installed
python-aptdaemon-gtk : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-brlapi : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-cairo : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-crypto : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-cups : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-dbus : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-egenix-mxdatetime : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-egenix-mxtools : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gconf : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-glade2 : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gmenu : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gnomeapplet : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gnomecanvas : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gnomekeyring : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gobject : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gobject-cairo : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gtk2 : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gtksourceview2 : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-gtkspell : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-imaging : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-indicate : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-launchpad-integration : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-libxml2 : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-markupsafe : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-newt : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-notify : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-openssl : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-pam : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-problem-report : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-pyatspi : Depends: python-gi (>= 2.90.1)
Depends: gir1.2-atspi-2.0 (>= 2.9.90) but it is not going to be installed
Depends: libatk-adaptor but it is not going to be installed
python-pycurl : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-pygoocanvas : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-pyorbit : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-rdflib : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-smbc : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-software-properties : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-twisted-web : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-ubuntuone : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-uno : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-virtkey : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-vte : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-webkit : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-wnck : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
python-xapian : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
screen-resolution-extra : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
ubuntu-sso-client : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
ufw : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
update-manager : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
Recommends: software-properties-gtk (>= 0.71.2) but it is not going to be installed
update-manager-core : Depends: python (< 2.7) but 2.7.5-5ubuntu3 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
dist-upgradeを使用すると、apt-get upgrade(最初のコードセグメント)と同じ出力が得られます。
apt-cache policy command-not-found
からの出力:
command-not-found:
Installed: 0.2.40ubuntu15
Candidate: 0.3ubuntu12
Version table:
0.3ubuntu12 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages
*** 0.2.40ubuntu15 0
100 /var/lib/dpkg/status
apt-get install command-not-found=0.3ubuntu12
からの出力は次のとおりです。
$ Sudo apt-get install command-not-found=0.3ubuntu12
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
command-not-found : Depends: python3-commandnotfound (>= 0.3ubuntu7) but it is not going to be installed
gconf2 : Depends: python:any
python-httplib2 : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is to be installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-lazr.restfulclient : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is to be installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-lazr.uri : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is to be installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-pyatspi : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is to be installed
Depends: python:any (>= 2.7.1-0ubuntu2)
Depends: python-gi (>= 2.90.1)
Depends: gir1.2-atspi-2.0 (>= 2.9.90) but it is not going to be installed
Depends: libatk-adaptor but it is not going to be installed
python-simplejson : Depends: python (>= 2.7~) but 2.6.6-2ubuntu2 is to be installed
Depends: python:any (>= 2.7.5-5~)
python-twisted-bin : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is to be installed
python-twisted-core : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is to be installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-twisted-names : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is to be installed
Depends: python:any (>= 2.7.1-0ubuntu2)
python-zope.interface : Depends: python (>= 2.7) but 2.6.6-2ubuntu2 is to be installed
Depends: python:any (>= 2.7.1-0ubuntu2)
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
apt-cache policy command-not-found
の出力は次のとおりです。
$ apt-cache policy command-not-found
command-not-found:
Installed: 0.2.40ubuntu15
Candidate: 0.3ubuntu12
Version table:
0.3ubuntu12 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages
*** 0.2.40ubuntu15 0
100 /var/lib/dpkg/status
これまでのフィードバックに感謝します。
まず、システムを修復する必要があります。
最初の問題のあるパッケージはcommand-not-found
です。正確なバージョンがインストールされています。したがって、開始
Sudo apt-get dist-upgrade
これにより、パッケージと他のいくつかのパッケージがアップグレードされます。または、バージョン0.3ubuntu12
を強制的にインストールすることもできます
Sudo apt-get install command-not-found=0.3ubuntu12
コマンド
Sudo make install
パッケージをインストールしません。したがって、apt
はインストールされたバージョンを見ることができません。
インストールを修復した場合(したがって、回答が進行中)、次のようにパッケージを後でインストールできます。
Sudo apt-get install checkinstall
cd ~/Downloads/Python-2.7.9
Sudo checkinstall