ubuntu系统下androlyze(或者是其他Python程序)出现:No module named traitlets.config异常的解决方法:
原因:其实就是缺少一个模块
解决方法:
如果没有pip,ubuntu下(centos可以用yum,类似的命令)安装python-pip:
sudo apt-get install python-pip
然后使用Pip安装这个模块就可以了:
sudo pip install traitlets