【python快手菜】pyinstaller使用指南

pyinstaller是一个将python脚本(.py文件)打包成可执行文件的第三方库,使之能在没有安装python的环境中运行,可用于windows、linux、Mac等操作系统。

pyinstaller需要在命令行下用pip工具安装:

pip install pyinstaller

使用清华源安装与升级第三方库:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy 或 pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple

pyinstaller生成exe文件有两种方式:

  • 方法一:

    1、pywin32(python组件)

    2、安装pyinstaller(解压后用CMD命令安装或者pip)

    3、在命令行cd到文件目录下执行pyinstaller.py-F**.py

    4、在dist文件夹下找到exe文件

  • 方法二:将源文件放到pyinstaller程序同目录中

    C:\Users\86183\AppData\Local\Programs\Python\Python38-32\Scripts

    cmd命令"pyinstaller -F **(文件名)"

    在win32文件夹下dist文件内找到

给生成的exe文件更换自定义图标

管理员命令:pyinstaller -i **.ico -F **.py

生成文件图标使用指定ico图标(直接拖到pyinstaller也行)

可以用比特虫生成ico文件

使用pyinstaller库需要注意两点:

  • (1)文件路径中不能包含空格和英文句号
  • (2)源文件必须是UTF8编码,采用IDLE编写的源代码都保存为UTF8编码形式

你可能感兴趣的:(【python快手菜】pyinstaller使用指南)