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 :
Baca Juga
- Openshift Overrides Email Header 'from', 'reply-to' Fields. How To Send Email Without Having To Use Sendgrid Nor Other Paid Email Service.?
- Ansible K8s Module: Failed To Import The Required Python Library (openshift) On Python /usr/bin/python3
- Django Serving Media Files (user Uploaded Files ) In Openshift
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"