我有一个Python脚本(操纵共享驱动器上的文件)。我想将该脚本转换为一个文件(也许是.exe?),它可以双击并在没有安装Python的机器上运行。这可能/容易吗?
答案 0 :(得分:1)
您可以尝试py2exe
。
答案 1 :(得分:1)
我使用并推荐pyinstaller。如果只需要一个可执行文件,则需要安装pyinstaller并调用传递这些参数的可执行文件:
pyinstaller.exe your_script.py --onefile --windowed
生成可执行文件时可以使用此选项:https://pythonhosted.org/PyInstaller/usage.html#options