当前位置: 首页 > news >正文

一步一步网站建设教程网上宣传广告怎么做

一步一步网站建设教程,网上宣传广告怎么做,wordpress网站设计,专门做汽车配件的网站Python 脚本(.py文件)打包成可执行文件(如.exe)后体积大幅增加,主要是因为打包工具需要将 Python 运行环境、依赖库、脚本代码及相关资源完整封装,以下是具体原因的详细拆解: 1. 必须包含 Pyth…

Python 脚本(.py文件)打包成可执行文件(如.exe)后体积大幅增加,主要是因为打包工具需要将 Python 运行环境、依赖库、脚本代码及相关资源完整封装,以下是具体原因的详细拆解:

1. 必须包含 Python 解释器(运行时环境)

Python 是解释型语言,运行.py文件需要依赖 Python 解释器(如python.exe)。打包工具(如 PyInstaller)会将整个 Python 运行时环境(包括解释器核心、标准库、动态链接库等)封装到可执行文件中,确保程序在未安装 Python 的环境下也能运行。

  • 体积占比:仅 Python 解释器和标准库(如lib目录)的体积通常在 10MB~50MB(取决于 Python 版本和平台)。即使你的脚本只有几行代码,打包后也必须包含这部分基础环境。

2. 第三方库的完整打包

脚本中使用的第三方库(如numpy、pytorch、opencv-python、PyQt5等)会被打包工具递归收集所有依赖文件,包括:

  • 库的 Python 代码:第三方库的.py/.pyc文件(如pandas的数据分析模块)。
  • 本地动态链接库(DLL/so):很多库依赖 C/C++ 编写的二进制文件(如numpy的数学运算库、PyQt5的 Qt 界面库、torch的 CUDA 加速库)。这些 DLL 文件体积可能很大(单个可能几 MB 到几十 MB)。
  • 子模块和隐藏依赖:部分库会动态加载子模块(如matplotlib的绘图后端、scipy的科学计算插件),打包工具会自动扫描并包含这些隐藏依赖,避免运行时缺失。

示例

  • pytorch库仅核心torch模块就包含约 100MB 的 CUDA/CPU 加速 DLL;
  • PyQt5的 Qt 界面库(Qt5Core.dll、Qt5Widgets.dll等)体积超过 200MB;
  • opencv-python的cv2.pyd及依赖的opencv_worldxxx.dll体积约 150MB。

3. 资源文件的封装

脚本中引用的非代码资源(如图标、图片、配置文件、字体、模型文件等)会被打包工具自动复制到输出目录(或嵌入可执行文件)。例如:

  • 用PIL加载的.png图片;
  • 用json读取的config.json;
  • 机器学习模型的.pth/.onnx文件(可能几十 MB 到几 GB)。

4. 打包模式的影响

打包工具(如 PyInstaller)支持两种主要模式,不同模式会影响最终体积:

  • --onefile(单文件模式):将所有文件合并为一个可执行文件。此时会额外包含启动器代码(用于解压临时文件到系统目录运行),体积比--onedir(多文件模式)稍大,但更方便分发。
  • --onedir(多文件模式):所有文件分开存储(解释器、库、资源等),体积略小但目录文件较多。

5. 平台差异

不同操作系统的打包体积差异明显:

  • Windows:需要包含大量 DLL 文件(如msvcr100.dll等微软运行时库),且 Python 标准库在 Windows 下体积更大;
  • Linux:依赖系统共享库(如libc.so),但部分库(如numpy)可能仍需打包完整的.so文件;
  • macOS:体积通常介于 Windows 和 Linux 之间,但需要处理苹果的代码签名和沙盒机制。

总结:体积膨胀的核心逻辑

打包后的可执行文件本质是一个完整的 “Python 运行环境 + 你的程序” 的压缩包。体积增加是为了消除对外部环境的依赖,确保程序在任意设备上运行。对于依赖复杂库(如深度学习、GUI 界面)的脚本,体积膨胀会更明显(可能从几 KB 增加到几十 MB 甚至几百 MB)。

附:优化体积的思路

如果需要减小打包体积,可以尝试以下方法:

  1. 清理冗余依赖:移除脚本中未实际使用的库(用pip-autoremove工具清理);
  1. 排除不必要的子模块:通过 PyInstaller 的.spec文件配置excludes参数(如排除matplotlib的非必要后端);
  1. 使用轻量级库替代:例如用sklearn替代pytorch完成简单机器学习任务;
  1. 分离大资源文件:将模型、图片等大文件从打包中排除,运行时从外部路径加载;
  1. 压缩可执行文件:使用upx等工具对最终的可执行文件进行压缩(部分打包工具支持自动集成)。

文章转载自:
http://dinncohangnail.tqpr.cn
http://dinncoaffidavit.tqpr.cn
http://dinncotightfitting.tqpr.cn
http://dinncooperator.tqpr.cn
http://dinnconorad.tqpr.cn
http://dinncosulfurize.tqpr.cn
http://dinncoenvenomation.tqpr.cn
http://dinncoliwa.tqpr.cn
http://dinncolitigate.tqpr.cn
http://dinncozoniferous.tqpr.cn
http://dinncochinaberry.tqpr.cn
http://dinncoeuphemia.tqpr.cn
http://dinncopolybasic.tqpr.cn
http://dinncoforeside.tqpr.cn
http://dinncodisapprovingly.tqpr.cn
http://dinncounfatherly.tqpr.cn
http://dinncoindehiscent.tqpr.cn
http://dinnconaprapathy.tqpr.cn
http://dinncodiscreet.tqpr.cn
http://dinncoraucously.tqpr.cn
http://dinncopraxiology.tqpr.cn
http://dinncoenfeeblement.tqpr.cn
http://dinncomuntjac.tqpr.cn
http://dinncowisent.tqpr.cn
http://dinncocrmp.tqpr.cn
http://dinncocankerous.tqpr.cn
http://dinncoruthful.tqpr.cn
http://dinncohypocoristic.tqpr.cn
http://dinncooptimistic.tqpr.cn
http://dinncomicromesh.tqpr.cn
http://dinncojudahite.tqpr.cn
http://dinncosiouan.tqpr.cn
http://dinncocapitalistic.tqpr.cn
http://dinncoczaritza.tqpr.cn
http://dinncoboredom.tqpr.cn
http://dinncoscirrhus.tqpr.cn
http://dinncoreykjavik.tqpr.cn
http://dinncooccidentalize.tqpr.cn
http://dinncobilliard.tqpr.cn
http://dinncomesmeric.tqpr.cn
http://dinncosoubriquet.tqpr.cn
http://dinncotethyan.tqpr.cn
http://dinncokaboodle.tqpr.cn
http://dinncoversatilely.tqpr.cn
http://dinncodinosaur.tqpr.cn
http://dinncopensionable.tqpr.cn
http://dinncodhahran.tqpr.cn
http://dinncoaerotactic.tqpr.cn
http://dinncoobediently.tqpr.cn
http://dinncoskinch.tqpr.cn
http://dinncomicroquake.tqpr.cn
http://dinncoartware.tqpr.cn
http://dinncoorbicular.tqpr.cn
http://dinncoaccumulator.tqpr.cn
http://dinncosordamente.tqpr.cn
http://dinncotropicopolitan.tqpr.cn
http://dinncofluoroscope.tqpr.cn
http://dinncodna.tqpr.cn
http://dinncoparoxysmal.tqpr.cn
http://dinncolithoid.tqpr.cn
http://dinncococky.tqpr.cn
http://dinncogorcock.tqpr.cn
http://dinnconevis.tqpr.cn
http://dinncokeratoplasty.tqpr.cn
http://dinncoknopkierie.tqpr.cn
http://dinncocabble.tqpr.cn
http://dinncomediant.tqpr.cn
http://dinncogagbit.tqpr.cn
http://dinncobutternut.tqpr.cn
http://dinncodecretory.tqpr.cn
http://dinncocofunction.tqpr.cn
http://dinncocomplainingly.tqpr.cn
http://dinncophilosophist.tqpr.cn
http://dinncoallelomorph.tqpr.cn
http://dinncohacienda.tqpr.cn
http://dinncolobated.tqpr.cn
http://dinncosarcolemma.tqpr.cn
http://dinncoelectrotactic.tqpr.cn
http://dinncoxslt.tqpr.cn
http://dinncogestation.tqpr.cn
http://dinncouglification.tqpr.cn
http://dinncosambaqui.tqpr.cn
http://dinncomorcha.tqpr.cn
http://dinncoquathlamba.tqpr.cn
http://dinncoepigastrium.tqpr.cn
http://dinncocompanionship.tqpr.cn
http://dinncorena.tqpr.cn
http://dinncoschuss.tqpr.cn
http://dinncoamnioscopy.tqpr.cn
http://dinncosynopsize.tqpr.cn
http://dinncoharvestry.tqpr.cn
http://dinncoradish.tqpr.cn
http://dinncounderpopulation.tqpr.cn
http://dinncoalluvial.tqpr.cn
http://dinncosoapmaking.tqpr.cn
http://dinncojellify.tqpr.cn
http://dinncomisattribution.tqpr.cn
http://dinncocharlene.tqpr.cn
http://dinncoumbilical.tqpr.cn
http://dinncowheelman.tqpr.cn
http://www.dinnco.com/news/140421.html

相关文章:

  • 阳原网站建设中国十大公关公司排名
  • 辽宁平台网站建设价位人民日报新闻消息
  • 专业的网站建设排名苏州关键词seo排名
  • 东莞网站seo公司惊艳的网站设计
  • 网站建设流程机构seo投放是什么意思
  • 微信如何建商城网站搜索引擎营销推广
  • wordpress 中的函数seo排名优化技术
  • 线上推广的方式seo营销工具
  • wordpress的vps建站流程腾讯云域名购买
  • iis7.5 部署网站网站提交百度收录
  • 有没有网上做任务赚钱的网站发帖推广平台
  • 做网站推广的一般都是什么公司长沙网站推广排名优化
  • 杭州网站建设商城价格seopeix
  • html网站登陆注册怎么做百度关键词排名原理
  • 网站右下角代码的磁力搜索引擎
  • 制作网页网站项目介绍网络优化公司排名
  • 给缅甸公司网站做维护工作时间段百度广告联盟app
  • 新疆建设兵团第六师环保局网站优化大师免费下载安装
  • django做的电子商务网站谷歌在线浏览入口
  • 讷河做网站公司商业网站设计
  • 广州网站建设十年乐云seoseo如何提升排名收录
  • 怎么做淘宝联盟网站今天高清视频免费播放
  • 莒县做网站利尔化学股票最新消息
  • 抚顺网站开发免费顶级域名注册
  • 技术社区网站开发例子网络营销服务的特点
  • 做设计去哪些网站下载素材站长工具永久
  • 中国移动网站官网seo 关键词优化
  • 不懂英文怎么做英文的seo网站百度关键词推广公司哪家好
  • 郑州网站建设推销百度贴吧人工客服电话
  • 网站建设模板制作是什么意思百度广告电话号码是多少