Just update about how we solved this issue:
The issue happened because the script running ray in virtual env was trying to find intalled libraries from python base directs but not from libraries installed in virtual env, to solve this issue simply change codes in ray.init():
ray.init({'conda':'<virtual env name>'})