gpt4 book ai didi

python - 如何在 Linux 上将 .py 转换为 .exe?

转载 作者:行者123 更新时间:2023-12-04 14:13:14 25 4
gpt4 key购买 nike

我正在尝试将我的 python 文件转换为 .exe 文件。
问题是,我使用的是 linux,我不能使用 pyinstaller 或 cx_freeze 来制作 .exe 文件
.py。
有什么办法吗?
我在 Debian Linux 上使用 Python 3.7.3。

最佳答案

您应该能够使用 PyInstaller 创建可执行文件,因为它与 Linux 系统兼容:
https://pyinstaller.readthedocs.io/en/stable/requirements.html#gnu-linux

pip install pyinstaller
cd /path/to/your/program
pyinstaller --onefile yourscript.py
但是,至少对于 pyinstaller 而言,无法在我所知道的 Linux 系统上为 Windows 捆绑可执行文件:

The output of PyInstaller is specific to the active operating system and the activeversion of Python. This means that to prepare a distribution for:

  • a different OS
  • a different version of Python
  • a 32-bit or 64-bit OS

you run PyInstaller on that OS, under that version of Python. The Python interpreterthat executes PyInstaller is part of the bundle, and it is specific to the OS and theword size.


来源: https://pyinstaller.readthedocs.io/en/stable/operating-mode.html

关于python - 如何在 Linux 上将 .py 转换为 .exe?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62667443/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com