我试图使用'pyinstaller'将'webpycode.py'转换为.exe,例如'webpycode.exe',
而且我确实已经成功创建了webpycode.exe。
当我执行它时,我得到了这个telling me the inter face is 8080 ("http://0.0.0.0:8080/")

但是当我访问此8080时,出现了ImportError:没有名为webpycode的模块
here is the detailed pic

附言当我直接使用“ webpycode.py”时,我可以毫无问题地访问8080。一切正常。所以我假设webpy和pyinstaller之间有些我不知道的东西

实际上,我不是英语为母语的人,但是我一直在寻找一整天的答案,但没有任何用处,因此,我来​​了stackoverflow,希望有人能帮助我。请帮忙。

任何事情都可能有用。

最佳答案

这为我工作:

pyinstaller.exe webcode.py --hidden-import=webcode

10-06 08:43