I can't install updates and start getting the following error on Ubuntu 20.04.4 LTS. It looks like python package issue. How can I solve it?
Asked
Active
Viewed 251 times
0
1 Answers
0
According to the answer https://askubuntu.com/a/1404848/177906, I resolved the issue as below.
deleted all Python 3.7 packages:
sudo apt --fix-missing purge $(dpkg -l | grep 'python3\.7' | awk '{print $2}')
and installed the same packages again:
sudo apt install libpython3.7-minimal libpython3.7-stdlib python3.7 python3.7-minimal python3.7-venv
Sithu
- 215
- 1
- 3
- 14
sudo apt update
andsudo apt upgrade
and copy/paste the results into your original question. – Soren A Apr 29 '22 at 03:00