Pythonをインストールできません-「信頼できるオプションに設定された競合する値」
結果python ––version
:
Command 'python' not found, but can be installed with:
sudo apt install python3
sudo apt install python
sudo apt install python-minimal
You also have python3 installed, you can run 'python3' instead.
猫の結果/etc/apt/sources.list
:
# deb cdrom:[Ubuntu 18.04.1 LTS _Bionic Beaver_ - Release amd64 (20180725)]/ bionic main restricted
# See http://help.ubuntu.com/community http://packages.ros.org/ros/ubuntu/y/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb [trusted=yes] http://br.archive.ubuntu.com/ubuntu/ bionic restricted main
# deb-src http://br.archive.ubuntu.com/ubuntu/ bionic main restricted
## Major bug fix updates produced after the final release of the
## distribution.
# deb-src http://br.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://br.archive.ubuntu.com/ubuntu/ bionic universe
# deb-src http://br.archive.ubuntu.com/ubuntu/ bionic universe
# deb-src http://br.archive.ubuntu.com/ubuntu/ bionic-updates universe
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://br.archive.ubuntu.com/ubuntu/ bionic multiverse
# deb-src http://br.archive.ubuntu.com/ubuntu/ bionic multiverse
# deb-src http://br.archive.ubuntu.com/ubuntu/ bionic-updates multiverse
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://br.archive.ubuntu.com/ubuntu/ bionic-backports restricted universe multiverse main
# deb-src http://br.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse
## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu bionic partner
# deb-src http://archive.canonical.com/ubuntu bionic partner
deb http://security.ubuntu.com/ubuntu bionic-security restricted main
# deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted
deb http://security.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu bionic-security universe
deb http://security.ubuntu.com/ubuntu bionic-security multiverse
deb http://archive.canonical.com/ bionic partner
# deb-src http://archive.canonical.com/ bionic partner
# deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse
deb http://br.archive.ubuntu.com/ubuntu/ bionic-updates main multiverse universe restricted
deb http://my-private-server.test bionic main
# deb-src http://my-private-server.test bionic main
結果sudo apt update
:
E: Conflicting values set for option Trusted regarding source http://br.archive.ubuntu.com/ubuntu/ bionic
E: The list of sources cannot be read.
結果/etc/apt/sources.list
:
bash: /etc/apt/sources.list: Permission denied
更新
問題を修正しようとした後(@PMFで行ったことをここに追加してください)、それでも機能しません。sources.list
現在の5行目は次のようになっています。
~$ sed -n 5p /etc/apt/sources.list
deb deb [arch=amd64 trusted=yes] http://br.archive.ubuntu.com/ubuntu/ bionic main http://br.archive.ubuntu.com/ubuntu/ bionic restricted main
回答
あなたは持っている[trusted=yes]
この行のオプションとして:
deb [trusted=yes] http://br.archive.ubuntu.com/ubuntu/ bionic restricted main
ただし、同じURLの他の行についてはそうではありません。そのため、オプションが競合していると表示されます。
修正するには、同じURLを持つ他のすべての行にそのオプションを追加するか、選択したエディターを使用してそのオプションを削除するか、次のコマンドを実行します。
sudo sed -i '/bionic restricted main$/s/^deb \[trusted=yes]/deb/' /etc/apt/sources.list
python3がインストールされていますが、Python 2.7は2020年1月1日にpython3
サポートが終了したため、Python3.xと一緒にPython2.xをインストールする必要はありません。コマンドを使用してPython3.xインタープリターを起動します。コマンドは次のとおりpython
です。 Python2.xインタープリターがインストールされている場合、それを起動するために使用されます。
E: Conflicting values set for option Trusted regarding source http://br.archive.ubuntu.com/ubuntu/ bionic
エラーを削除するには、次のように行の先頭に文字を/etc/apt/sources.list
挿入して、の5行目をコメントアウトする必要があり#
ます。
#deb deb [arch = amd64 trusted = yes] http://br.archive.ubuntu.com/ubuntu/ bionicmain制限付き
pLumoのコメントによると、「いいえ、同じ行です。彼が変更した後です。」この場合、基本的に、コメントアウトされていない1行で、deb http://br.archive.ubuntu.com/ubuntu/ bionic main restricted
2行ではないことを示す必要があります。sources.listに、deb http://br.archive.ubuntu.com/ubuntu/ bionic main restricted
Ubuntuがソフトウェアを更新できないことを示す行がない場合。
テキストの書式設定が混乱しているために質問を読む別の方法によると、sources.listにはすでに次のような別の行があります。
deb http://br.archive.ubuntu.com/ubuntu/ bionicmain制限付き
あいまいなテキスト形式に気を取られないようにしてください。必要な結果は、2つのケースのどちらでも同じです。上記の行をsources.listに含める必要があります。この行をコメントアウトしないでください!
このファイルはrootが所有しているため、sources.listファイルをで編集するにsudo nano /etc/apt/sources.list
は、を使用する必要があります。sudo
そのためsudo
、nanoテキストエディターで編集するには、rootに権限を昇格する必要があります。
Nanoテキストエディタのキーボードショートカット
キーボードの組み合わせCtrl+Oを使用し、その後を押しEnterてファイルを現在の場所に保存します。
キーボードの組み合わせCtrl+Xを使用してnanoを終了します。
編集後、/etc/apt/sources.list
実行sudo apt update
して使用可能なソフトウェアのリストを更新します。