2

Message on Software Updater

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.

kevy
  • 688
tangorboyz
  • 51
  • 7

1 Answers1

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
  • 7