简体   繁体   English

Python转换为.exe(通过Pyinstaller)不起作用

[英]Python converted to .exe (via Pyinstaller) doesn't work

I convert a simple print("Hello World") code form Python to .exe with Pyinstaller (with the comand pyinstaller -wF ) and apparently it creates the file properly. 我使用Pyinstaller(使用pyinstaller -wF )将简单的print("Hello World")代码从Python转换为.exe,显然可以正确创建文件。 However, when I execute it, nothing happens. 但是,当我执行它时,什么也没有发生。

Nothing happens because print() sends a message to standard output (your terminal), but an .exe has no terminal. 什么都没有发生,因为print()将消息发送到标准输出(您的终端),但是.exe没有终端。 You can try to implement a GUI to display this information (in a module like tkinter ), or have your program do something else like open a program or file on your computer! 您可以尝试实现GUI来显示此信息(在tkinter类的模块中),或者让您的程序执行其他操作,例如在计算机上打开程序或文件!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用 pyinstaller 将其转换为 exe 后,带有单例的 python 脚本不起作用 - python script with singleton doesn't work after converting it to exe with pyinstaller Pyinstaller - 转换为 .exe 的 python 脚本没有以预期的方式执行程序 - Pyinstaller - python script converted to .exe doesn't execute the program in the way expected Python:Google Drive API v3 在使用 Pyinstaller 转换为.exe 后无法工作 - Python: Google Drive API v3 Can't Work After Converted to .exe Using Pyinstaller pyinstaller 生成的 exe 无法按预期工作 - exe generated by pyinstaller doesn't work as expected Pyinstaller 生成的 exe 无法正常工作 - Pyinstaller generated exe doesn't work properly PyInstaller转换后的EXE停止在Python 3.6 64位上运行 - PyInstaller converted EXE stopped to work on Python 3.6 64-bit 程序无法作为单个noconsole exe文件运行(Pyinstaller) - Program doesn't work as single and noconsole exe file (Pyinstaller) 使用 PyInstaller 编译为 exe 后,作为 ImageGrab 的 pyscreenshot 不起作用 - pyscreenshot as ImageGrab doesn't work after compiling with PyInstaller to exe Pygame 使用pyinstaller导出到.exe后游戏无法运行 - Pygame game doesn't work after exporting to .exe with pyinstaller 运行良好的 Plotly express map 不能作为 Pyinstaller exe 工作 - Plotly express map that runs fine doesn't work as Pyinstaller exe
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM