0

Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help resolve the situation:

The following packages have unmet dependencies: grapejuice : Depends: python3 (>= 3.7~) but 3.6.7-1~18.04 is to be installed Depends: python3-pydantic but it is not installable E: Unable to correct problems, you have held broken packages.

Does anyone know how to fix this for me please?

1 Answers1

1

The python3-pydantic package is in the universe repository in Ubuntu 20.04 and later. Install the python3-pydantic package from Ubuntu 20.04 in Ubuntu 18.04 with the following commands:

sudo apt update
wget http://mirrors.kernel.org/ubuntu/pool/universe/p/pydantic/python3-pydantic_1.2-1_all.deb
sudo apt install ./python3-pydantic_1.2-1_all.deb
karel
  • 122,292
  • 133
  • 301
  • 332