Skip to content Skip to sidebar Skip to footer

Openshift: Can't Install Lxml For Python App

I am trying Openshift but I can't deploy a python app with lxml. Below are my steps, I'm only adding a lxml requirement. The error happens when I push. I am able to ssh so I don't

Solution 1:

Openshift is only able to compile/install 'lxml==3.2.5' the last time I checked.

Set your 'requires' in your setup.py to 'lxml==3.2.5'.

Solution 2:

Answer :

The latest version of lxml (3.5.0) does not work but lxml==3.4.4 works.

Post a Comment for "Openshift: Can't Install Lxml For Python App"