docs/cn/resources/troubleshooting.mdx
import Feedback from "/snippets/page-feedback.mdx";
```powershell
Set-Alias geniex (where.exe geniex)
```
```bash
geniex pull ai-hub-models/Qwen3-4B-Instruct-2507
```
随后重启 `geniex serve`。
1. **镜像仓库登录。** Docker Hub(`docker.io/qualcomm/geniex`)是公开的,无需登录。Qualcomm Container Registry 则需先登录:
```bash bash
# Qualcomm Container Registry:
docker login docker-registry.qualcomm.com -u '$app' -p GB2S6KXMJXTPV8VHNFNS7Q6LVH75LOOBTLT8D723WUX6PSFZMTX95GIQG4EFWH5C021ONZ5763VI9IDHU96Q7VAZJ2830CLX3NPI6STQOJWRYXLLA2ZYTL1S
```
出现 `Login Succeeded` 即成功。
2. **加入 docker 用户组。** 若 `docker pull` 返回 `permission denied while trying to connect to the docker API at unix:///var/run/docker.sock`,说明当前用户不在 `docker` 组:
```bash bash
sudo usermod -aG docker $USER
newgrp docker # apply the new group in the current shell
```
然后重新执行拉取。
该检查是全局的:所有后端都需要这些指令,因此把 `--compute` 切到 `cpu`、`gpu` 或 `npu` 都无济于事。查看你的 CPU 报告了哪些特性:
```bash bash
LD_SHOW_AUXV=1 /bin/true | grep AT_HWCAP # 查找 atomics、asimdrdm、asimddp、fphp、asimdhp
cat /proc/cpuinfo | grep Features # 相同特性,内核使用的名称
```
若缺少这些特性,该设备无法运行当前版本。请带上以上输出到 [GitHub Issues](https://github.com/qualcomm/GenieX/issues) 或 Slack 反馈。