14

我正在尝试通过 github 操作在 Pypi 上为 linux 和 windows 上传一个包

使用 linux 我得到了这个结果

Binary wheel 'xxx-cp36-cp36m-linux_x86_64.whl' has an unsupported platform tag 'linux_x86_64'.

在 Windows 安装期间

InvalidDistribution: Cannot find file (or expand pattern): 'dist/*'

上传的代码是

  python setup.py sdist bdist_wheel
  twine upload dist/* --verbose

任何想法如何上传 linux 和 windows 的发行版?

4

1 回答 1

13

您不能将linux_*.whl轮子上传到 PyPI(原因在这里)。

您需要通过manylinux项目auditwheel工具将此特定于平台的轮子转换为 manylinux 轮子。

于 2020-01-03T22:26:30.693 回答