web-dev-qa-db-ja.com

16.04から16.10にアップグレードする際のエラー

UbuntuディストリビューションをアップグレードするためにSudo apt dist-upgradeを実行しましたが、このエラーに直面しました

Cannot start click due to a conflict with a different locally-installed Python 'click' package.  Remove it using Python packaging tools and try again.
dpkg: error processing package click (--configure):
 subprocess installed post-installation script returned error exit status 1

ローカルPython 3をクリックして、アンインストールで指定されたパッケージをアンインストールしました here 。その後Sudo apt-get install -fを試しましたが、次のように言って失敗します

    Setting up click-apparmor (0.3.17) ...
Traceback (most recent call last):
  File "/usr/bin/click", line 37, in <module>
    import click
ImportError: No module named 'click'
dpkg: error processing package click-apparmor (--configure):
 subprocess installed post-installation script returned error exit status 1

アンインストールされているため、clickをインポートできません。これに関連するAskUbuntuで他の何かを見つけることができませんでした。

apt-cache policy click python-click python3-clickを試すと、これが出力されます。

Installed: 0.4.45.1+16.10.20160916-0ubuntu1
  Candidate: 0.4.45.1+16.10.20160916-0ubuntu1
  Version table:
 *** 0.4.45.1+16.10.20160916-0ubuntu1 500
        500 http://us.archive.ubuntu.com/ubuntu yakkety/main AMD64 Packages
        100 /var/lib/dpkg/status
     0.4.43+16.04.20160203-0ubuntu2 500
        500 http://in.archive.ubuntu.com/ubuntu xenial/main AMD64 Packages
        500 http://us.archive.ubuntu.com/ubuntu xenial/main AMD64 Packages
        500 http://archive.ubuntu.com/ubuntu xenial/main AMD64 Packages
python-click:
  Installed: (none)
  Candidate: 6.6-1
  Version table:
     6.6-1 500
        500 http://us.archive.ubuntu.com/ubuntu yakkety/main AMD64 Packages
        500 http://us.archive.ubuntu.com/ubuntu yakkety/main i386 Packages
     6.2-2ubuntu1 500
        500 http://in.archive.ubuntu.com/ubuntu xenial/universe AMD64 Packages
        500 http://in.archive.ubuntu.com/ubuntu xenial/universe i386 Packages
        500 http://us.archive.ubuntu.com/ubuntu xenial/universe AMD64 Packages
        500 http://us.archive.ubuntu.com/ubuntu xenial/universe i386 Packages
python3-click:
  Installed: (none)
  Candidate: 6.6-1
  Version table:
     6.6-1 500
        500 http://us.archive.ubuntu.com/ubuntu yakkety/universe AMD64 Packages
        500 http://us.archive.ubuntu.com/ubuntu yakkety/universe i386 Packages
     6.2-2ubuntu1 500
        500 http://in.archive.ubuntu.com/ubuntu xenial/universe AMD64 Packages
        500 http://in.archive.ubuntu.com/ubuntu xenial/universe i386 Packages
        500 http://us.archive.ubuntu.com/ubuntu xenial/universe AMD64 Packages
        500 http://us.archive.ubuntu.com/ubuntu xenial/universe i386 Packages

そして、Sudo dpkg--auditはこれを出力します:

The following packages have been unpacked but not yet configured.
They must be configured using dpkg --configure or the configure
menu option in dselect for them to work:
 ubuntu-app-launch    Session init system job for Launching Applications
 ubuntu-app-launch-tools Tools for working wtih launched applications
 ubuntu-system-settings System Settings application for Ubuntu Touch
 unity-greeter-session-broadcast Service to allow the greeter to communicate to
 url-dispatcher-tools tools for working with the URL Dispatcher.

The following packages are only half configured, probably due to problems
configuring them the first time.  The configuration should be retried using
dpkg --configure <package> or the configure menu option in dselect:
 click                Click packages
 click-apparmor       Click manifest to AppArmor easyprof conversion tools
 url-dispatcher:AMD64 service to allow sending of URLs and get handlers started

どんな助けも大歓迎です。

5
brainbreaker

非ubuntuリポジトリを削除し、このエラーが再度表示されたらクリックします:

    Setting up click-apparmor (0.3.17) ...
Traceback (most recent call last):
  File "/usr/bin/click", line 37, in <module>
    import click
ImportError: No module named 'click'
dpkg: error processing package click-apparmor (--configure):
 subprocess installed post-installation script returned error exit status 1
  1. 以下を使用して、click-apparmorインストール後スクリプトの名前を変更してスキップします。

    Sudo mv /var/lib/dpkg/info/click-apparmor.postinst /var/lib/dpkg/info/click-apparmor.postinst.backup
    
  2. スタックしたインストールを続行します。

    Sudo apt-get install -f
    
  3. Ubuntuリポジトリをインストールするpythonモジュールをクリックします

    Sudo apt install python3-click-package python3-click python-click
    
  4. 動作する場合は、インストール後のスクリプトを戻します

    Sudo mv /var/lib/dpkg/info/click-apparmor.postinst.backup /var/lib/dpkg/info/click-apparmor.postinst
    Sudo dpkg-reconfigure click-apparmor
    
3
user.dz