I am trying to get pyfolio working with my zipline algorithm and I see the "No module named 'pandas.indexes'" error when I try to read the pickle file using pd.read_pickle('~/zipline-algos/demo_out.pickle')
I have tried setting up a completely separate virtualenv for pyfolio where the only installation I have is pyfolio. I still see the same error. It seems pyfolio downloads pandas 0.22 and then complains about it. I have tried downgrading pandas to 0.18. However after downgrading I see another error 'TypeError: Cannot convert input to Timestamp'
I installed pyfolio using 'pip install pyfolio'. Is there a way I can get pyfolio to work?