zoukankan      html  css  js  c++  java
  • 打包Python程序

    cxfreeze比较简单,不容易出错。
    cxfreeeze有几种文件形式,msi和whl。msi是安装包,直接双击运行,下载地址h
    ttp://sourceforge.net/projects/cx-freeze/files/4.3.2/ 。

    whl是python安装包,安装格式:pip install whl文件地址,
    下载地址:    https://www.lfd.uci.edu/~gohlke/pythonlibs/

    安装后cxfreeze执行脚本在python_homeScripts下面

    cxfreeze打包exe格式:

    python cxfreeze全路径 要打包的py文件  --target-dir=

    l例如:cxfreeze D:/hello.py --target-dir D:/123或python cxfreeze D:/hello.py --target-dir=D:/123

    步骤:

    1、首先,下载本机器安装的python相应版本的cx_Freeze软件包 注意区分X64 和X86
    msi: https://www.lfd.uci.edu/~gohlke/pythonlibs/
    whl:  https://www.lfd.uci.edu/~gohlke/pythonlibs/

    2.安装
    whl :pip install whl安装包 或msi双击安装

    3、安装完成后,在python安装目录下的Scripts文件夹下,生成cx_freeze相关文件。
    cmd,进入该文件目录,然后键入
    cxfreeze --version  或者python cxfreeze --version
    查看版本信息

    4、新建一个python程序,例如:hello.py
    在“C:Python33Scripts”目录(也就是cxfreeze命令所在的文件目录)下运行:
    cxfreeze D:/hello.py --target-dir D:/123  
    就可以将D:/hello.py文件打包到D:/123目录下,生成hello.exe程序和相关依赖文件。
    然后用Enigma Virtual Box打包成单文件程序即可

  • 相关阅读:
    谷歌浏览器离线安装
    C语言restrict关键字的使用
    Win32编程中radiobutton的分组
    在SourceForge中建立开源项目
    [转载]Linux解压缩命令
    [转载]vim配置文件
    解决VC6在win7下打开文件崩溃问题
    gson解析复杂的json数据
    catch中return语句的执行时间
    踏出了学习clojure的第一步
  • 原文地址:https://www.cnblogs.com/toumingbai/p/11347514.html
Copyright © 2011-2022 走看看