返回> 网站首页
python打包成可执行文件-包含依赖库
yoours2024-04-12 14:24:55
简介一边听听音乐,一边写写文章。
以 spss2excel.py 为例,使用Visual Code打开工作文件夹。
1. 安装python扩展插件
2. python依赖
a) pip国内源
中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban):http://pypi.douban.com/simple/
清华大学: https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学: https://pypi.mirrors.ustc.edu.cn/simple/
阿里云:https://mirrors.aliyun.com/pypi/simple/
华中科技大学:https://pypi.hustunique.com/
b) 安装依赖:
pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ Pandas
pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ openpyxl
pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ pyreadstat
3. 程序运行
python .\spss2excel.py 1.sav
4. 安装打包依赖
使用指定源
pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ pyinstaller
5. 打包成应用程序
a) linux系统
home/soskp/.local/bin/pyinstaller /home/soskp/2023/py/spss2excel.py --noconfirm --collect-submodules pyreadstat
b) windows系统
pyinstaller ./spss2excel.py --noconfirm --collect-submodules pyreadstat
6. 生成可执行文件
在目录 dist\spss2excel 下生成可执行文件和依赖文件夹 _internal
7. 程序执行
spss2excel.exe 1.sav