Skip to content
Advertisement

Missing Python headers (Python.h) on Heroku

I’m trying to deploy to Heroku a Python application which requires some C extensions. The problem is that when I deploy the app to Heroku via git push heroku master I get the following error:

JavaScript

From what I understand, I’m missing the Python.h header file, which is required to build my C extension. I’ve already tried apt install python-dev, python-devel, python3-dev and so on, but all resulting in the same output:

JavaScript

The output of cat /etc/os-release is the following

JavaScript

Now, how do I install the python headers? Thanks in advance

Advertisement

Answer

JavaScript

This looks to me like a badly-written C extension which is hardcoded to only work on “Python 3.6 with PyMalloc”. Since you’re using Python 3.7.9 the path obviously doesn’t exist.

The usual approach is to

JavaScript

When setuptools/distutils builds a module it sets the include path appropriately (you can see that it’s done this with -I/app/.heroku/python/include/python3.7m in your output).

Personally I’d have my doubts about any C extension that hardcodes the paths like this – it’s such an odd thing to do that it doesn’t leave you with much faith in the quality of the rest of the code. It’s also likely that this extension has only been tested or designed to work on Python 3.6, so there’s no guarantee it works on Python 3.7 (generally there aren’t huge compatibility changes between versions, but then we already know that this extension writer has made some odd decisions…)

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement