如何修复我的已编译python代码的错误

时间:2019-05-05 07:01:41

标签: python

我有一个python2代码,我在这个python代码中使用了face_recognition库。 我的python代码成功运行。 我可以使用pyinstaller编译此代码,而不会出现任何问题:

public Person(int[] arrayTest){
    if (arrayTest == null){
        this.arrayTest = null;
    } else {
        int[] copyArray = new int[arrayTest.length];
        for(int i=0; i<arrayTest.length; i++) {
            copyArray[i] = arrayTest[i]
        }
        this.arrayTest = copyArray;
    }
}

但是运行此编译文件时出现错误:

  

root @ grayhat:〜/ Desktop#./code Traceback(最近一次通话结束):
  文件“ code.py”,第10行,在       导入face_recognition文件“ /usr/local/lib/python2.7/dist-packages/PyInstaller/loader/pyimod03_importers.py”,   在load_module中的第395行       exec(字节码,模块。 dict )文件“ face_recognition / init .py”,文件中的第7行   “ /usr/local/lib/python2.7/dist-packages/PyInstaller/loader/pyimod03_importers.py”,   在load_module中的第395行       exec(字节码,模块。 dict )文件“ face_recognition / api.py”,在RuntimeError中的第17行:无法打开   /tmp/_MEInI0MHf/face_recognition_models/models/shape_predictor_68_face_landmarks.dat   [6836]无法执行脚本代码

0 个答案:

没有答案