python – PyInstaller“ImportError:没有名为Pyinstaller的模块”

前端之家收集整理的这篇文章主要介绍了python – PyInstaller“ImportError:没有名为Pyinstaller的模块”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是当我运行 python configure.py时产生的代码.
dan@Q430-Q530:~/pyinstaller-2.0/PyInstaller$python configure.py
Traceback (most recent call last):
  File "configure.py",line 28,in <module>
    from PyInstaller import HOMEPATH,PLATFORM
ImportError: No module named PyInstaller

所以,目前,我甚至不能让PyInstaller运行,因为一个丢失的模块叫做PyInstaller.这是PyInstaller 2.0,您可以分别找到/pyinstaller-2.0和/pyinstaller-2.0/PyInstaller目录herehere内部的一些屏幕.

有人在这里知道发生了什么吗?我尝试将/pyinstaller-2.0目录中的pyinstaller.py文件复制到/pyinstaller-2.0/PyInstaller目录中,但我没有运气.

这可能会变得很容易解决,但是…让我陷入困境.如果有更多的信息需要,请问,我会尽量提供.

解决方法

使用PyInstaller 2.0,您不需要运行configure或pyinstaller文件. (阅读安装文件附带的PyInstaller 2.0文档.)

建立你的项目;在/ your / path / to / pyinstaller /目录中,只需运行:

“python pyinstaller.py [opts] yourprogram.py”

原文链接:https://www.f2er.com/python/186721.html

猜你在找的Python相关文章