私はUbuntu 16.04を実行していますが、サーバーにはpython、python3.5およびpython3.6の2つのバージョンがあります。
私がすでに試したことは:
アンインストールpython3-apt
と再インストールしても、同じエラーは解決しませんでした。
編集:python3
python3.6を実行しています。
追加されたエラー:
Traceback (most recent call last):
File "/usr/bin/add-apt-repository", line 11, in <module>
from softwareproperties.SoftwareProperties import SoftwareProperties, shortcut_handler
File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 27, in <module>
import apt_pkg
私の場合、pythonの2つのバージョンがインストールされているため、python3.5とpython3.6ですが、python3.6バージョンではモジュールが見つかりませんでした。@ Emmetの提案のおかげで、だった:
nano /usr/bin/add-apt-repository
は行を編集しました#! /usr/bin/python3
から#! /usr/bin/python3.5
そしていま add-apt-repository
コマンドが再び機能します。