Linux下编译Python程序
有没有一种方法可以让我编译我的python程序(.py)成为一个我不必运行的常规程序扔终端来运行它???
示例我不想这样做来运行它抛出了终端。
./whatever.py
示例 我希望能够像 Windows .exe 那样制作文件,但对于 Linux,例如下面的文件。
Is there a way where I can compile my python program (.py) to become just a regular program that I don't haft to run threw the terminal to run it???
Example I don't wanna do this to run it threw the terminal.
./whatever.py
Example I wanna be able to make the file like a Windows .exe, but for Linux like the one below, for example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在文件的第一行添加 Shebang ,如下所示
:通过键入(在终端中)使您的文件可执行:
You need to add a Shebang at the first line of your file like this:
and make your file executable by typing (in a terminal):
如果您想从 python 脚本制作冻结的二进制文件,请使用 cx_Freeze
If you want to make a frozen binary from python scripts, use cx_Freeze