In my host env I have ray 1.6.0 installed, but when I try to install ray in Python VENV it installs 1.0.1.post1 … cant get higher.
if i try :
$ pip3.8 install -U "ray[default] @ https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp38-cp38-manylinux2014_x86_64.whl"
Requirement 'ray[default] @ https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp38-cp38-manylinux2014_x86_64.whl' looks like a filename, but the file does not exist
ray-3.0.0.dev0-cp38-cp38-manylinux2014_x86_64.whl is not a supported wheel on this platform.
also :
$ pip3.8 install -U ray[default]==1.13.0
Collecting ray[default]==1.13.0
Could not find a version that satisfies the requirement ray[default]==1.13.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)
No matching distribution found for ray[default]==1.13.0
what can I do ?