欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Pyinstaller打包工具的使用以及避坑

程序员文章站 2022-06-27 19:03:38
目录一、基本使用二、基本错误处理1、当运行exe后出现提示:no module named xxx2、当运行出现报错:unicodedecodeerror: 'gbk' codec can't dec...

本篇博客主要介绍的是pyinstaller在windows下的基本使用和基础避坑

在windows中使用pyinstaller工具打包时会出现一个问题,在打包列表会看到这样的警告信息:

django.core.exceptions.improperlyconfigured: could not find the gdal library (tried "gdal302", "gdal301", "gdal300", "gdal204", "gdal203", "gdal202", "gdal201", "gdal20"). is gdal installed? if it is, try setting gdal_library_path in your settings.collect_submodules: failed to import 'django.contrib.gis.sitemaps'!

这种信息不予理会就好了。

一、基本使用

1、安装pyinstall

# pip install pyinstaller

2、查找程序需要的文件

# 制作 .spec 文件
# 进入项目目录,执行命令:(还有其它参数:-f等, 建议使用-d)
# -d会在当前目录下的dist目录中生成文件夹,处理静态文件时比较方便
# pyi-makespec -d manage.py

3、生成.exe文件

# 在manage.spec 同级目录执行
# pyinstaller manage.spec

4、进入dist目录运行项目

# 生成的exe可执行文件 runserver --noreload
# manage.exe runserver --noreload

二、基本错误处理

1、当运行exe后出现提示:no module named xxx

出现原因:出现这种情况的原因主要是由于django有些module不会自动收集,需要手动添加

解决办法:打开生成的后缀名为.spec的文件,在hiddenimports中添加报错中没有的模块

2、当运行出现报错:unicodedecodeerror: 'gbk' codec can't decode byte 0x80 in position 658: illegal multibyte

出现原因:主要是windows系统下gbk编码的问题

解决办法:打开报错信息上面一行提示的错误文件并跳转到提示的错误行数上修改with open(),在里面添加:encoding='utf-8' 即可

during handling of the above exception, another exception occurred:

traceback (most recent call last):
file "threading.py", line 890, in _bootstrap
file "threading.py", line 936, in _bootstrap_inner
file "traceback.py", line 167, in format_exc
file "traceback.py", line 121, in format_exception
file "traceback.py", line 521, in __init__
file "traceback.py", line 533, in _load_lines
file "traceback.py", line 533, in _load_lines
file "traceback.py", line 533, in _load_lines
[previous line repeated 2 more times]
file "traceback.py", line 531, in _load_lines
file "traceback.py", line 285, in line
file "linecache.py", line 16, in getline
file "linecache.py", line 47, in getlines
file "linecache.py", line 103, in updatecache
file "pyinstaller\loader\pyimod03_importers.py", line 299, in get_source
unicodedecodeerror: 'gbk' codec can't decode byte 0xa6 in position 11211: illegal multibyte sequence

上面是报错示例,找到"pyinstaller\loader\pyimod03_importers.py"文件,打开并编译第299行找到对应位置添加:encoding='utf-8'(注:修改前先备份好备份,以免误操作找不回)

3、当运行出现这种报错:templatedoesnotexist at /index/

出现原因:templatedoesnotexist 这个是因为没有找到templates文件

解决办法:根据错误提示将templates文件添加至对应的路径下,刷新即可。

templatedoesnotexist at /index/
index/index.html
request method: get
request url: http://127.0.0.1:8000/index/
django version: 3.2.9
exception type: templatedoesnotexist
exception value:
index/index.html
exception location: django\template\loader.py, line 19, in get_template
python executable: f:\workspoace\pywork\bookstore\dist\manage.exe
python version: 3.7.8
python path:
['c:\\users\\ja\\appdata\\local\\temp\\_mei25882\\base_library.zip',
'c:\\users\\ja\\appdata\\local\\temp\\_mei25882\\lib-dynload',
'c:\\users\\ja\\appdata\\local\\temp\\_mei25882']
server time: tue, 16 nov 2021 03:13:35 +0000
template-loader postmortem
django tried loading these templates, in this order:

using engine django:

django.template.loaders.filesystem.loader: c:\users\ja\appdata\local\temp\_mei25882\templates\index\index.html (source does not exist)
django.template.loaders.app_directories.loader: c:\users\ja\appdata\local\temp\_mei25882\django\contrib\admin\templates\index\index.html (source does not exist)
django.template.loaders.app_directories.loader: c:\users\ja\appdata\local\temp\_mei25882\django\contrib\auth\templates\index\index.html (source does not exist)

上面这种示例把template文件夹复制下来放到c:\users\ja\appdata\local\temp_mei25882\下面即可

4、项目缺少样式css和js

出现原因:pyinstaller 能找到templates(html files文件),但不能找到css和js文件

解决办法:

在settings中配置django静态文件收集

# static_root = os.path.join(base_dir, '文件夹路径')

静态文件收集命令

# python manage.py collectstatic

然后在各个app的url中添加:

# static.static(settings.static_url, document_root=settings.static_root)
# 这句话的意思就是将static_root目录的静态文件复制一份到网页 static_url路径下

在.spec文件中修改datas,配置静态文件打包:

# f:\workspoace\pywork\bookstore\statics 要打包的css,js静态文件地址 相对应打包到dist中的位置
# f:\workspoace\pywork\bookstore\templates 要打包的html文件模板地址 相对应打包到dist中的位置
# datas=[(r'f:\workspoace\pywork\bookstore\statics',r'.\statics'), (r'f:\workspoace\pywork\bookstore\templates', r'.\templates')],

注:这里配置template打包上面的第3条文件迁移就不需要做了,这里同步打包了。

这里还存在一个小问题就是django的配置文件settings中:

# staticfiles_dirs = [
#     os.path.join(base_dir, "statics"),
# ]
static_root = os.path.join(base_dir, 'statics')

staticfiles_dirs和static_root不能同时使用,如果配置了staticfiles_dirs需要注释掉,不然会报错。

到此这篇关于pyinstaller打包工具的使用以及避坑的文章就介绍到这了,更多相关pyinstaller打包工具内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!