-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
Ray and python version mismatch #32
Comments
When you specify your own pip_packages, you're supposed to provide ray dependencies as well. Pls add ray dependencies to pip_packages |
Even adding "ray[default]==2.3" and "python==3.8.5" to pip_packages the same error comes up. |
No need for python. Python is not in pip. Are you sure you did something like this? pip_packages=["ray[air]==2.3.0","ray[data]==2.3.0"]) |
Completely sure. This is the code I'm using:
Same error of version mismatch, both in ray and python. |
Now the ray version is the same, but the python version is different: 3.8.5 and 3.8.10 |
Not exactly related, but this was the top search result for this error. I ran into this error, when the I fixed it by providing the image and repository information to the spec. |
Using the following code,
I am getting this error:
I checked the source code and the python version is assigned from platform.python_version(). Why is it possible that the python version does not match?
On the other hand, ray version, the ray version of the cluster should be the same of the head node, if it is not specified, shouldn't it?
Any thoughts on why this is happening?
Thanks in advance.
The text was updated successfully, but these errors were encountered: