使用Pyinstaller打包的简单实现

Pyinstaller的安装

  • 直接在cmd中输入以下命令(需要配置Python的环境变量)
    pip install pyinstaller
  • 使用压缩包.tar.gz文件安装,点击下载(需分别安装依赖库)
    1. 解压缩
    2. 打开cmd,切换至解压缩后的文件目录
    3. 输入以下命令python setup.py install

使用Pyinstaller打包

第一次尝试#####
  • 在网上查找资料后,然后直接在cmd中输入pyinstaller -F -w E:/xx/x/test.py进行第一次打包
  • 结果不出意外,报错failed to create process.

第二次尝试#####
  • 在cmd中切换至python安装目录下Script文件夹,并输入pyinstaller-script.py -F -w E:/xx/x/test.py
  • 依旧报错Unable to create process using 'D:\Python3.7\python3.exe "D:\python3.7\Scripts\pyinstaller-script.py" -F -w E:/xx/x/test.py'
    不得不说网上的资料也要区别对待[捂脸]

第三次尝试#####
  • 在cmd中切换到要打包的py文件目录下,输入"D:\python3.7\python.exe" "D:\python3.7\Scripts\pyinstaller-script.py" -F -w test.py
  • 终于,成功了!!!
  • 在打包的py文件所在的文件夹中,会生成build、dist两个文件夹,在dist文件夹中就是你所需的.exe文件了。

Pyinstaller可执行操作注释:
-F 创建一个可执行文件
-w 隐藏I/O控制台窗口
-n 安装包名称
完整操作介绍请点击这里

你可能感兴趣的:(使用Pyinstaller打包的简单实现)