Ubuntu 下python模块安装时出现的一些异常

  • sudo apt-get update 出现异常
        E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/bin/test -w /var/cache/app-info -a -e /usr/bin/appstreamcli; then appstreamcli refresh > /dev/null; fi'
E: Sub-process returned an error code
  • 解决
sudo pkill -KILL appstreamcli  
wget -P /tmp https://launchpad.net/ubuntu/+archive/primary/+files/appstream_0.9.4-1ubuntu1_amd64.deb https://launchpad.net/ubuntu/+archive/primary/+files/libappstream3_0.9.4-1ubuntu1_amd64.deb  
sudo dpkg -i /tmp/appstream_0.9.4-1ubuntu1_amd64.deb /tmp/libappstream3_0.9.4-1ubuntu1_amd64.deb  

转载自:

Ubuntu 16.04出现:Problem executing scripts APT::Update::Post-Invoke-Success ‘if /usr/bin/test -w /var/

  • Python3 在安装模块时要使用命令
pip3 install 
  • 如果没有的话再安装
  • 如果直接使用pip会提示没有这个Module,安装的时候也会出现软件依赖问题
  • 如果命令没有错,提示
ImportError: No module named 'ConfigParser'

参考:ImportError: No module named ‘ConfigParser’

    原文作者:凉快Dison
    原文地址: https://zhuanlan.zhihu.com/p/29522520
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞