我正在尝试创建一个生成 exe 的 python 脚本。但我想让它运行,这样用户就不需要安装 python 来运行脚本。这是我的代码:(已经使用pyinstaller转换为exe)
import os
with open('output.py', 'w') as writeout:
writeout.write('''
Hello world!
''')
# Creates pyinstaller by using cmd
os.system('cmd /c' + ' pyinstaller --onefile' + output + '.py')
所以我的代码基本上是一个生成exe的exe。但问题是用户需要安装 Python 才能运行这个 exe(原始的)。由于所有这些代码所做的都是在 cmd 中写出 pyinstaller --onefile output.py
。我阅读了 pyinstaller 的文档,但没有发现任何有用的东西。