自己的模块和pyinstaller

时间:2019-03-05 10:32:17

标签: python-3.x cython pyinstaller

我有一个由Cython编译的mymodule-win32.pyd文件和一个只有一个语句的launcher.py文件:

import mymodule

两个文件都在当前目录中。当我运行时:

python launcher.py

一切正常,并且mymodule已启动。但是,如果我使用命令创建单个可执行文件:

pyinstaller -w -F launcher.py

它不运行并给出错误:

..not able to execute the script.

-paths=.添加到pyinstaller命令无济于事。

问题出在哪里,如何解决?感谢您的帮助。

0 个答案:

没有答案