如何在Windows上将多个python个轮子打包成一个轮子?

How to package multiple python wheels into one wheel on Windows?

On Windows for Python 2.7- 3.5 是否可以将多个 python 轮子打包成一个轮子?

如果没有,使用标准库工具的替代方案是什么?

编辑


我打算使用存档来打包多个轮子并在 Python 安装后解压它们。

创建一个执行此操作的进程相当简单:

以Flask为例:

pip wheel flask

你所有的轮子都进入 wheelhouse 目录。只需压缩目录,然后将其解压缩到目标服务器上并 运行:

pip install --no-index --find-links wheelhouse/ flask

我们实施了一个工具来解决这个问题,尽管通过验证,单个文件,同时适用于 linux 和 windows 并且有许多 linux1 支持。

https://github.com/cloudify-cosmo/wagon.