I am using the ray job submit script and I need to install the facebook prophet library. the problem is that this only works if pystan
is installed before prophe i.e. I need to first do:
pip install pystan==2.19.1.1
and only then I can do:
pip install fbprophet
i.e. pystan has to be installed before. This is giving me a lot of grief and I wonder if there is a way to get around this on the array side.
Alternatively, is there a way to install a conda package?