- Notifications
You must be signed in to change notification settings - Fork 360
Open
Labels
Description
背景
我们尝试在 openEuler(ARM64)服务器上部署 SQLBot。后端依赖通过 uv sync
/ pip install
安装时,sqlbot-xpack==0.0.3.40
会报错,提示缺少 Linux ARM64 平台的 wheel
或源码分发包,导致部署失败。
复现步骤
- 在 openEuler (aarch64) 上克隆项目,并准备 Python 3.11 环境。
- 执行
uv sync
或pip install sqlbot-xpack==0.0.3.40
. - 安装阶段出现如下报错:
error: Distribution sqlbot-xpack==0.0.3.40 @ registry+https://test.pypi.org/simple can't be installed because it doesn't have a source distribution or wheel for the
current platform
hint: You're on Linux (manylinux_2_41_aarch64), but sqlbot-xpack (v0.0.3.40) only has wheels for the following platforms: manylinux2014_x86_64, macosx_11_0_arm64,
win_amd64
期望与实际行为
- 期望:在 ARM64 Linux(openEuler、CentOS Stream、Kylin 等)环境中能够直接安装
sqlbot-xpack
,完成 SQLBot 的部署。 - 实际:由于缺少
manylinux
ARM64 的 wheel 或源码包,安装失败。
请求
麻烦维护者能否发布面向 Linux ARM64 的 wheel(如 manylinux_2_41_aarch64
)或提供源码分发,以便在 openEuler 等 ARM 服务器上部署 SQLBot。非常感谢