python-3.x 无法安装RAY

ar5n3qh5  于 2022-11-18  发布在  Python
关注(0)|答案(3)|浏览(432)

RISE实验室的射线库(https://rise.cs.berkeley.edu/blog/pandas-on-ray/
我正在使用Windows 10专业版,64位和运行这些脚本从水蟒提示符。
两种我都试过了

pip install ray

以及

pip3 install ray

结果是一样的

Collecting ray
Could not find a version that satisfies the requirement ray (from versions: 
)
No matching distribution found for ray

如果能找到解决方法或故障排除,那就太好了。谢谢

cgh8pdjw

cgh8pdjw1#

更新:Ray现在在实验中确实支持Windows!

请参阅此处的Windows安装说明:
https://docs.ray.io/en/latest/installation.html#windows-support
Ray不支持Windows:
https://github.com/ray-project/ray/issues/2683
https://github.com/ray-project/ray/issues/631
他们建议使用Windows子系统for Linux作为最有效的解决方案:
https://learn.microsoft.com/en-us/windows/wsl/install-win10

rt4zxlrg

rt4zxlrg3#

如果您使用的是python3.11(截至2023年2月7日),Ray也不可用,因此您现在需要降级到python3.10
您可以安装与3.11并行的python 3.10,并使用以下命令创建3.10环境

python3.10 -m venv venv
source ./venv/bin/activate
pip install ray

相关问题