How severe does this issue affect your experience of using Ray?
Low: It annoys or frustrates me for a moment.
I try to run ray up ray/python/ray/autoscaler/local/example-full.yaml on the head machine. it is woring. but we I try to use the work to connect to the head, I find the python version is different from the head. and get the following error.
RuntimeError: Version mismatch: The cluster was started with:
Ray: 1.13.0
Python: 3.7.7
This process on node work machine was started with:
Ray: 1.13.0
Python: 3.10.4
I guess the reason for this is head launch use 3.7.7 but which I use ray start --address=âXXXX:6388â to connect the work machine is 3.10.4. I cannot find where is the docker file to config the python version.
Hi @mabodx
Thanks for posting this question.
The python version is determined by the docker image you use. For example, âray/ray-project:latest-gpuâ is using python 3.7.7.
Is there any reason you want to run âray startâ on your work machine to manually join the cluster? Can it be part of the cluster with âray upâ?