Replies: 1 comment
|
是的,PyPI 上这个 1.5.20 的 macOS wheel 本身已经损坏,并不是你的 uv 缓存问题。 我直接下载并检查了 PyPI 返回的官方文件: 这个 SHA-256 与 PyPI 的 1.5.20 元数据 完全一致,所以下载内容没有在本地或传输途中被改坏。用 Python 3.14 的 因此:
不过你这里还有一个更直接的解决办法: uv tool uninstall agentseek-cli
uv tool install 'agentseek>=0.0.5' --no-cache
agentseek --help如果因为兼容原因必须暂时使用旧的 uv tool install 'agentseek-cli==0.0.4' --with 'npx-skills==1.5.17' --no-cache我也对 PyPI 的 1.5.17 macOS universal2 wheel 做了完整解压测试:263 个条目全部通过。 所以结论是:报错确实来自损坏的官方 1.5.20 wheel;首选迁移到 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
$ UV_DEFAULT_INDEX=https://pypi.org/simple uv tool install agentseek-cli --no-cache
Resolved 73 packages in 13.72s
× Failed to download
npx-skills==1.5.20├─▶ Failed to extract archive: npx_skills-1.5.20-py3-none-macosx_10_13_universal2.whl
├─▶ I/O operation failed during extraction
╰─▶ deflate decompression error: too many length or distance symbols
hint:
npx-skills(v1.5.20) was included becauseagentseek-cli(v0.0.4) depends onnpx-skills
All reactions