我有Python版本2.7,cx_freeze版本5.0和Ubuntu 16.04。
在必需目录中运行命令var arr = [];
$(".container").each(function(){
$(this).children("div[class^='child']").each(function){
if(arr.indexOf($(this).attr("class"))>(-1)){
$(this).hide();
}
else{
arr.push($(this).attr("class"));
}
});
});
时,出现以下错误:
python2 setup.py build
cx_freeze的源代码为here和here。我想把util文件下载到我本地机器上的cx_freeze文件夹中,但我既没有得到它也不确定这种方法的有效性。
那么,我该如何解决这个问题?