python打包成exe

要将Python代码打包成exe文件,可以使用PyInstaller工具。以下是使用PyInstaller打包Python代码为exe的基本步骤:

  1. 安装PyInstaller:

 pip install pyinstaller
  1. 使用PyInstaller打包Python脚本:

 pyinstaller --onefile your_script.py

这里的your_script.py是你要打包的Python脚本文件。--onefile参数表示生成单一的可执行文件。

  1. dist文件夹中找到生成的exe文件。

以下是一个简单的示例代码,假设你有一个名为example.py的Python脚本:

 # example.py
def main():
print("Hello, World!")
 
if __name__ == "__main__":
main()

你可以使用以下命令将其打包为exe:

 
 
pyinstaller --onefile example.py

执行完毕后,在dist文件夹中找到example.exe并运行它。

posted @ 2024-09-11 18:38  奥兰王子  阅读(45)  评论(0编辑  收藏  举报