xmlsec/xmlsec1 In Heroku Python
27 Feb 2020
Need xmlsec (aka xmlsec1) working in Heroku's Python? Try this:
- Install buildpack: heroku buildpacks:add --index 1 heroku-community/apt
- This needs to be before the Python buildpack. You can validate that in the settings tab now days.
- Create an Aptfile in the root of your project and add:
- libxml2-dev
libxml2
libxmlsec1-dev
libxmlsec1
libxmlsec1-openssl
build-essential
libxml2-utils
xmlsec1
- libxml2-dev
- Commit & Push!