Pyinstaller and Ply IOError: source code not available

前端 未结 2 1259
攒了一身酷
攒了一身酷 2021-01-25 10:04

I am pretty new to pyinstaller but I have been banging my head against this problem for a couple of days now and I can\'t seem to figure out what\'s wrong. My script runs fine n

2条回答
  •  隐瞒了意图╮
    2021-01-25 10:47

    it seems that with PLY it is necessary to include the py file itself as described on THIS link, the workaround solution is to add the file in the .spec file generated by pyinstaller as below :

    datas=[('calc.py','.')]
    

    see pyinstaller Using spec file for details on adding a file into your executable

提交回复
热议问题