Python 常用文件操作总结: 导入库路径:sys.path.append('/usr/local/lib/python2.7/site-packages') from random import shuffle 判断文件夹是否有效: if not os.path.isdir(targetDir): print 'Invalid target directory: {}'.format(targetDir) sys.exit() 判断文件夹是否存在: if not os.path.exists…
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? 原因:一些程序锁定了apt数据库.可能是软件中心,apt-get等. 解决方法: 列举apt进程 ps aux | grep apt 杀掉…