一、概述
目前有一个python脚本,需要在别的电脑中运行,安装python环境太麻烦,封装成exe文件,运行比较方便。
二、演示
环境说明
python版本:3.7.9
操作系统:windows 10
安装模块
pip3 installer pyinstaller
封装
新建目录test,目录结构如下:
./├── conf.py
└── test.py
conf.py
#!/usr/bin/python3#-*- coding: utf-8 -*-
people_dict=[
{"name":"张三","age":'23'},
{"name":"李四","age":'21'}
]
test.py
#!/usr/bin/python3#-*- coding: utf-8 -*-
importconfimportjson
with open('ret.txt',encoding='utf-8',mode='w') as f:
f.write(json.dumps(conf.people_dict))
打开cmd窗口,进入test目录,执行:
pyinstaller -F -c test.py
注意:test.py是主程序
输出:
...7908INFO: checking