ModuleNotFound error after ray.init()

Hello, I keep getting the "ModuleNotFoundError: No module named ‘ray.autoscaler._private._kubernetes’ " error after run ray.init() in python 3.10 (ubuntu), and have tried different versions of ray.
Could someone please help?

Thanks!

ray.init()
2024-02-21 15:12:12,513 INFO worker.py:1489 – Connecting to existing Ray cluster at address: 100.64.90.136:6379…
2024-02-21 15:12:12,661 INFO worker.py:1664 – Connected to Ray cluster. View the dashboard at 100.64.90.136:8265
RayContext(dashboard_url=‘100.64.90.136:8265’, python_version=‘3.10.13’, ray_version=‘2.8.0’, ray_commit=‘105355bd253d6538ed34d331f6a4bdf0e38ace3a’, protocol_version=None)
2024-02-21 15:12:12,698 WARNING worker.py:2052 – The autoscaler failed with the following error:
Traceback (most recent call last):
File “/home/ray/anaconda3/lib/python3.10/site-packages/ray/autoscaler/_private/monitor.py”, line 585, in run
self._initialize_autoscaler()
File “/home/ray/anaconda3/lib/python3.10/site-packages/ray/autoscaler/_private/monitor.py”, line 231, in _initialize_autoscaler
self.autoscaler = StandardAutoscaler(
File “/home/ray/anaconda3/lib/python3.10/site-packages/ray/autoscaler/_private/autoscaler.py”, line 250, in init
self.reset(errors_fatal=True)
File “/home/ray/anaconda3/lib/python3.10/site-packages/ray/autoscaler/_private/autoscaler.py”, line 1117, in reset
raise e
File “/home/ray/anaconda3/lib/python3.10/site-packages/ray/autoscaler/_private/autoscaler.py”, line 1061, in reset
self.provider = _get_node_provider(
File “/home/ray/anaconda3/lib/python3.10/site-packages/ray/autoscaler/_private/providers.py”, line 250, in _get_node_provider
provider_cls = _get_node_provider_cls(provider_config)
File “/home/ray/anaconda3/lib/python3.10/site-packages/ray/autoscaler/_private/providers.py”, line 226, in _get_node_provider_cls
return importer(provider_config)
File “/home/ray/anaconda3/lib/python3.10/site-packages/ray/autoscaler/_private/providers.py”, line 88, in _import_kubernetes
from ray.autoscaler._private._kubernetes.node_provider import KubernetesNodeProvider
ModuleNotFoundError: No module named ‘ray.autoscaler._private._kubernetes’