我正在Windows上运行Python 3.5.3,并尝试使用pip安装Pyinstaller。它似乎工作 - 没有错误或任何东西,非常简单,因为总是如此。
我试过了import -m pyinstaller
但它说该模块不存在,所以我检查了安装文件夹,因为文档说you should be able to use pyinstaller.py directly from the install location.
这是该位置的图片,pyinstaller.py不存在!它也不在任何子文件夹或其他文件夹中。我想我只是遗漏了一些显而易见的东西,但经过一个小时的卸载和重新安装后,如果有人能帮助我,我会很感激。谢谢!
答案 0 :(得分:2)
为什么要导入?你应该直接在你的控制台上运行pyinstaller:
pyinstaller --onedir your_app_main.py
或
pyinstaller --onefile your_app_main.py
检查这个PyInstaller手册: https://pyinstaller.readthedocs.io/en/stable/