说 python wheels 在许多安装上分摊编译时间是什么意思?
What does it mean to say python wheels amortizes compiling time over many installations?
wheels spec讨论格式的好处:
The wheel binary package format frees installers from having to know about the build system, saves time by amortizing compile time over many installations, and removes the need to install a build system in the target environment.
我不清楚这意味着什么(某种组件包缓存或其他)。
谢谢。
这意味着您需要花费更多的时间来设置构建服务器和 wheel 分发系统(对于尚未发布 wheel 的软件包),但是您在每个软件包安装上都节省了几秒钟或几分钟,因此最终您节省了总时间在长运行.
wheels spec讨论格式的好处:
The wheel binary package format frees installers from having to know about the build system, saves time by amortizing compile time over many installations, and removes the need to install a build system in the target environment.
我不清楚这意味着什么(某种组件包缓存或其他)。
谢谢。
这意味着您需要花费更多的时间来设置构建服务器和 wheel 分发系统(对于尚未发布 wheel 的软件包),但是您在每个软件包安装上都节省了几秒钟或几分钟,因此最终您节省了总时间在长运行.