每次我打开软件更新程序检查更新时,总是会收到这样的消息(您已停止检查更新)。之后,我收到消息“检测到系统问题”。每次我重新启动系统时,总是会弹出“检测到系统问题”的提示。我尝试通过 删除崩溃文件sudo rm /var/crash/*
,但它总是会再次出现。
答案1
运行sudo pip3 install --upgrade pip setuptools wheel
解决了问题。肯定是出现了错误,因为我同时使用了 python 3.5 和 3.6。错误肯定发生在我重新安装一些 python 3.6 包之后。现在软件更新程序又可以正常工作了。我从 github 上找到了这个https://github.com/Homebrew/homebrew-core/issues/3078
。python 3.5 安装中也chardet
丢失了一个包,导致程序package-downloader
崩溃update-notifier
。所以我运行了sudo pip3 install --upgrade requests
那个 install chardet
。https://stackoverflow.com/questions/31387799/importerror-cannot-import-name-chardet