首页 > Python文件打包成exe

Python文件打包成exe

1. 安装pyinstaller

pip install pyinstaller

2.如果有外部依赖包

将外部依赖包放到你的python安装的site-packages

D:Python27Libsite-packages

3.直接在命令提示符中输入pyinstaller -F 文件名.py 注意F要大写

4. exe在dist文件夹里面,如果你还用到了外部的文件,比如ini配置文件,记得一定要把这个exe文件从dist中剪切出来再运行,否则会出错

 

jieba打包失败问题

http://blog.csdn.net/qq_26376175/article/details/69680992

转载于:https://www.cnblogs.com/fionacai/p/7161215.html

更多相关:

  • C# 启动外部程序的几种方法: 1. 启动外部程序,不等待其退出。 2. 启动外部程序,等待其退出。 3. 启动外部程序,无限等待其退出。 4. 启动外部程序,通过事件监视其退出。 // using System.Diagnostics; private string appName = "calc.exe";///