Every time I open Software Updater to check for updates, I always got a message like this (You stopped checks for updates). After that, I got message "System problem detected". And every time I reboot the system, the pop up "System problem detected" always shows up. I've tried to delete the crash file by sudo rm /var/crash/*
, but it always comes back.
Asked
Active
Viewed 1,534 times
2

kevy
- 668

tangorboyz
- 51
1 Answers
3
Run sudo pip3 install --upgrade pip setuptools wheel
solved the problems. There must be an error because I use both python 3.5 and 3.6. The error must happened after I reinstall some python 3.6 package. Now the software-updater is working again.
I got this from github https://github.com/Homebrew/homebrew-core/issues/3078
. There's also chardet
package that lost from python 3.5 installation, that cause the package-downloader
from update-notifier
to crash. So I runsudo pip3 install --upgrade requests
that also install chardet
. https://stackoverflow.com/questions/31387799/importerror-cannot-import-name-chardet

tangorboyz
- 51
sudo apt update
and thensudo apt full-upgrade
. If any, please [edit] and post the error message in its entirety. – Oct 03 '17 at 09:25sudo apt update
first ? – Soren A Oct 03 '17 at 09:29sudo cat /var/log/apt/term.log
orcat /var/log/apt/history
and inspect any cause to this problem. Doessudo dpkg --configure -a
helps? – Redbob Oct 03 '17 at 12:30/var/log/apt/term.log
, but there's only a warning about a duplicate certificate. And I did trysudo dpkg --configure -a
before, but it doesn't help. Update from terminal seem to work. Only software updater that doesn't work. – tangorboyz Oct 04 '17 at 04:30/usr/sbin/aptd
. Here's the report if I runaptd --version
: – tangorboyz Oct 05 '17 at 00:59Traceback (most recent call last): File "/usr/sbin/aptd", line 37, in <module> import aptdaemon.core File "/usr/lib/python3/dist-packages/aptdaemon/core.py", line 64, in <module> from .worker import DummyWorker File "/usr/lib/python3/dist-packages/aptdaemon/worker/__init__.py", line 26, in <module> import pkg_resources ImportError: No module named 'pkg_resources'
– tangorboyz Oct 05 '17 at 01:00