Does pandas work on Openshift?

I am trying to run an application on Openshift using Python 3.3 cartridge. I added my dependencies to requirements.txt

, but the app didn't load with pandas dependency. I searched the web and there one mentioned pandas and numpy related issues, but doesn't seem to help. I tried to install pandas via ssh and after a while the following message appears

Installing collected packages: pandas
  Running setup.py install for pandas
Connection to [app].rhcloud.com closed by remote host.
Connection to [app].rhcloud.com closed.

      

Has anyone already used pandas in Openshift? Are there potential problems due to C dependencies?

thank

+3


source to share


1 answer


I had the same problem. There seems to be a compilation issue with OpenShift algos.c

, which is part of pandas.



By manually setting, I was able to avoid closing the OpenShift connection: See my answer to this similar question .

+3


source







All Articles