My setup:
- Heroku
- Python 2.7.6
- Django 1.8
I have a Conda Buildpack assembly according to:
https:
Here are my conda requirements:
$ cat conda-requirements.txt cryptography scipy numpy gcc libffi
Here is the error that I see after trying git push:
remote: gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -DUSE__THREAD -I/usr/include/ffi -I/usr/include/libffi -I/app/.heroku/miniconda/include/python2.7 -cc/_cffi_backend.c -o build/temp.linux-x86_64-2.7/c/_cffi_backend.o remote: c/_cffi_backend.c:15:17: fatal error: ffi.h: No such file or directory remote:
This is pretty confusing because I already have libffi in my cond requirements, and yet it is the same one that doesn't work. Googling shows that some other people have the same error, while others do not. Any thoughts / suggestions appreciated!
source share