Can't install ray 2.32.0 via pip

ray has 2.32.0 from ray · PyPI . but when I install it by ‘pip3 install -U ray’ only get ray 2.10.0.

$ sudo -E pip install -U ray -i https://pypi.org/simple
Requirement already satisfied: ray in /usr/local/lib/python3.8/dist-packages (2.10.0)

I’m on python 3.8 and ubuntu 20.04.

$ sudo -E pip install ray==2.32.0
Looking in indexes: http://mirrors.aliyun.com/pypi/simple/
ERROR: Ignored the following yanked versions: 1.7.1
ERROR: Could not find a version that satisfies the requirement ray==2.32.0 (from versions: 0.8.4, 0.8.5, 0.8.6, 0.8.7, 1.0.0rc0, 1.0.0rc1, 1.0.0rc2, 1.0.0, 1.0.1, 1.0.1.post1, 1.1.0, 1.2.0, 1.3.0, 1.4.0rc1, 1.4.0rc2, 1.4.0, 1.4.1, 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.7.0rc0, 1.7.0, 1.8.0, 1.9.0rc1, 1.9.0rc2, 1.9.0, 1.9.1rc0, 1.9.1, 1.9.2, 1.10.0rc0, 1.10.0, 1.11.0rc0, 1.11.0rc1, 1.11.0, 1.11.1, 1.12.0rc1, 1.12.0, 1.12.1, 1.13.0, 2.0.0rc0, 2.0.0rc1, 2.0.0, 2.0.1, 2.1.0, 2.2.0, 2.3.0rc0, 2.3.0, 2.3.1, 2.4.0, 2.5.0, 2.5.1, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.7.0rc0, 2.7.0, 2.7.1, 2.7.2, 2.8.0, 2.8.1, 2.9.0, 2.9.1, 2.9.2, 2.9.3, 2.10.0)
ERROR: No matching distribution found for ray==2.32.0

hi there, ray stopped releasing for python 3.8 since 2.11.0. On ubuntu 20.04, you can setup a conda environment with python 3.9 or above and install latest ray.

1 Like