No puedo instalar Python - "Valores en conflicto establecidos para la opción Confiable"

Aug 21 2020

Resultados de 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.

Resultados del gato /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  

Resultados de 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.

Resultados de /etc/apt/sources.list:

bash: /etc/apt/sources.list: Permission denied

Actualizar

Después de intentar solucionar el problema (@PMF, agregue aquí lo que hizo) , todavía no funciona. La línea 5 de sources.listahora dice:

~$ 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

Respuestas

pLumo Aug 21 2020 at 08:40

Tienes [trusted=yes]como opción en esta línea:

deb [trusted=yes] http://br.archive.ubuntu.com/ubuntu/ bionic restricted main

pero no para las otras líneas con la misma URL, por eso dice que tiene opciones en conflicto.

Para solucionarlo, agregue esa opción a todas las demás líneas con la misma URL o simplemente elimínela usando el editor de su elección o simplemente ejecute:

sudo sed -i '/bionic restricted main$/s/^deb \[trusted=yes]/deb/' /etc/apt/sources.list
karel Aug 21 2020 at 08:06

Tiene python3 instalado y no es necesario instalar Python 2.x junto con Python 3.x porque Python 2.7 llegó al final de su vida útil el 1 de enero de 2020. Use el comando python3para iniciar el intérprete de Python3.x, y el comando pythones utilizado para iniciar el intérprete Python2.x si está instalado.

Para eliminar el E: Conflicting values set for option Trusted regarding source http://br.archive.ubuntu.com/ubuntu/ bionicerror, la línea 5 de /etc/apt/sources.listdebe comentarse insertando un #carácter al principio de la línea de la siguiente manera:

# deb deb [arch = amd64 confiable = sí] http://br.archive.ubuntu.com/ubuntu/ bionic principal restringido

Según el comentario de pLumo "No, es la misma línea. Después de que la cambió". Si este es el caso, entonces básicamente necesitas tener una línea que no esté comentada y que deb http://br.archive.ubuntu.com/ubuntu/ bionic main restrictedno diga dos de ellas. Si no tiene una línea en sources.list que dice que deb http://br.archive.ubuntu.com/ubuntu/ bionic main restrictedUbuntu no podrá actualizar el software.

De acuerdo con otra forma de leer su pregunta debido al formato de texto confuso, ya tiene otra línea en sources.list que dice:

deb http://br.archive.ubuntu.com/ubuntu/ bionic principal restringido

Trate de no distraerse con el formato de texto ambiguo. El resultado requerido es el mismo en cualquiera de los dos casos. Necesita tener la línea anterior en sources.list. ¡No comentes esta línea!

Para editar el archivo sources.list sudo nano /etc/apt/sources.listrequiere el uso de sudoporque este archivo es propiedad de root, por lo que debe elevar sus privilegios a root con sudopara poder editarlo con el editor de texto nano.

Atajos de teclado del editor de texto nano
Use la combinación de teclado Ctrl+ Oy luego presione Enterpara guardar el archivo en su ubicación actual.
Use la combinación de teclado Ctrl+ Xpara salir de nano.

Después de editar, /etc/apt/sources.listejecute sudo apt updatepara actualizar la lista de software disponible.