We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
win10
0.14.x
安装阶段,执行出错。
根据文档:https://inference.readthedocs.io/zh-cn/latest/getting_started/installation.html#installation 安装失败: 补充:采用单引号,在linux下可执行成功,但在windows下执行出现如下错误。 建议:统一改为双引号(sglang和mlx两处)
(py310) admin@DESKTOP-K0UT5D3 G:>pip install 'xinference[sglang]' -U ERROR: Invalid requirement: "'xinference[sglang]'"
(py310) admin@DESKTOP-K0UT5D3 G:>pip install 'xinference[mlx]' ERROR: Invalid requirement: "'xinference[mlx]'"
修改文档:https://inference.readthedocs.io/zh-cn/latest/getting_started/installation.html#installation 兼顾linux和windows环境,确保都能执行成功。
pip install 'xinference[sglang]' ——改为 pip install "xinference[sglang]" -U
pip install 'xinference[mlx]' ——改为:pip install “xinference[mlx]” -U
The text was updated successfully, but these errors were encountered:
欢迎提交 PR。
Sorry, something went wrong.
Update installation.rst
a4450fb
参考: xorbitsai#2206 修改:统一改为双引号,确保linux和windows环境都能执行成功(单引号在win下执行错误) pip install 'xinference[sglang]' ——改为 pip install "xinference[sglang]" -U pip install 'xinference[mlx]' ——改为:pip install “xinference[mlx]” -U
No branches or pull requests
System Info / 系統信息
win10
Running Xinference with Docker? / 是否使用 Docker 运行 Xinfernece?
Version info / 版本信息
0.14.x
The command used to start Xinference / 用以启动 xinference 的命令
安装阶段,执行出错。
Reproduction / 复现过程
根据文档:https://inference.readthedocs.io/zh-cn/latest/getting_started/installation.html#installation
安装失败:
补充:采用单引号,在linux下可执行成功,但在windows下执行出现如下错误。
建议:统一改为双引号(sglang和mlx两处)
(py310) admin@DESKTOP-K0UT5D3 G:>pip install 'xinference[sglang]' -U
ERROR: Invalid requirement: "'xinference[sglang]'"
(py310) admin@DESKTOP-K0UT5D3 G:>pip install 'xinference[mlx]'
ERROR: Invalid requirement: "'xinference[mlx]'"
Expected behavior / 期待表现
修改文档:https://inference.readthedocs.io/zh-cn/latest/getting_started/installation.html#installation
兼顾linux和windows环境,确保都能执行成功。
pip install 'xinference[sglang]'
——改为 pip install "xinference[sglang]" -U
pip install 'xinference[mlx]'
——改为:pip install “xinference[mlx]” -U
The text was updated successfully, but these errors were encountered: